home *** CD-ROM | disk | FTP | other *** search
-
- #
- # BANK.EXE instrument build editor
- #
-
- AS = # Assembler static switches
- CS = /Zp1 /Ox # C compiler static switches
- LS = # Linker static switches
- AO = # Assembler optional switches
- CO = # C compiler optional switches
- LO = # Linker optional switches
-
- build.obj: build.c
- cl $(CS) $(CO) build.c
-
- build.exe: build.obj
- link $(LS) $(LO) build;
-
-