|
|
1.1 root 1: # Nmake macros for building Windows 32-Bit apps
2: !include <NtWin32.Mak>
3:
4: # target list
5: all: stereo.cpl
6:
7: # Update the object files if necessary
8: stereo.obj: stereo.c stereo.h
9: $(cc) $(cdebug) $(cflags) $(cvarsdll) stereo.c
10:
11: # Update the resource if necessary
12: stereo.res: stereo.rc stereo.h
13: $(rc) $(rcvars) -r -fo stereo.res stereo.rc
14: $(cvtres) -$(CPU) stereo.res -o stereo.rbj
15:
16: # Update the import library
17: stereo.lib: stereo.obj stereo.def
18: $(implib)\
19: -machine:$(CPU)\
20: stereo.obj\
21: -def:stereo.def\
22: -out:stereo.lib
23:
24: # Update the dynamic link library
25: stereo.cpl: stereo.obj stereo.lib stereo.res
26: $(link) $(ldebug) -subsystem:native -machine:$(CPU)\
27: -base:0x1C000000\
28: -dll\
29: -entry:_DllMainCRTStartup$(DLLENTRY)\
30: -out:stereo.cpl\
31: stereo.obj stereo.rbj stereo.exp $(guilibsdll)
32:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.