- Timestamp:
- Nov 12, 2024, 11:28:47 AM (4 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.com
r413 r414 1 1 $! $Id$ 2 $ set def [.Server] 2 $ set def [.Common] 3 $ objects = "" 4 $ comobjs = "" 5 $ build_common: 6 $ file = f$search("*.c") 7 $ if file .eqs. "" then goto quit_server 8 $ write sys$output "Compiling "'file' 9 $ cc 'file' 10 $ if file .eqs. "" then 11 $ comobjs = "''file'" 12 $ else 13 $ comobjs = "''objects'+''file'" 14 $ endif 15 $ goto build_common 16 $ quit_common: 17 $ set def [-.Server] 3 18 $ build_server: 4 19 $ file = f$search("*.c") … … 6 21 $ write sys$output "Compiling "'file' 7 22 $ cc 'file' 23 $ if file .eqs. "" then 24 $ objects = "''file'" 25 $ else 26 $ objects = "''objects'+''file'" 27 $ endif 8 28 $ goto build_server 9 29 $ quit_server: 30 $ link /executable=tewi.exe "''comobjs'+''objects'" 10 31 $ set def [-] 11 32 $ exit
Note:
See TracChangeset
for help on using the changeset viewer.