|
|
1.1 ! root 1: # Nmake macros for building Windows 32-Bit apps ! 2: ! 3: !include <ntwin32.mak> ! 4: ! 5: # This line allows NMAKE to work as well ! 6: ! 7: all: clidemo.exe ! 8: ! 9: # Update the resource if necessary ! 10: ! 11: clidemo.res: clidemo.rc ! 12: rc -r -fo res.tmp clidemo.rc ! 13: cvtres -$(CPU) res.tmp -o clidemo.res ! 14: del res.tmp ! 15: ! 16: # Update the object file if necessary ! 17: ! 18: clidemo.obj: clidemo.c ! 19: $(cc) $(cflags) $(cvars) clidemo.c ! 20: ! 21: dialog.obj: dialog.c ! 22: $(cc) $(cflags) $(cvars) dialog.c ! 23: ! 24: object.obj: object.c ! 25: $(cc) $(cflags) $(cvars) object.c ! 26: ! 27: register.obj: register.c ! 28: $(cc) $(cflags) $(cvars) register.c ! 29: ! 30: stream.obj: stream.c ! 31: $(cc) $(cflags) $(cvars) stream.c ! 32: ! 33: utility.obj: utility.c ! 34: $(cc) $(cflags) $(cvars) utility.c ! 35: ! 36: # Update the executable file if necessary, and if so, add the resource back in. ! 37: ! 38: clidemo.exe: clidemo.obj dialog.obj object.obj register.obj stream.obj utility.obj clidemo.res clidemo.def ! 39: $(cvtobj) $(cvtdebug) *.obj ! 40: $(link) $(guiflags) -out:clidemo.exe clidemo.obj dialog.obj object.obj register.obj stream.obj utility.obj clidemo.res $(guilibs)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.