* makedsig has been integrated with makedstp, it should handle both LIB and TPL files * other tools have not been modified
15 lines
295 B
Makefile
15 lines
295 B
Makefile
CFLAGS = -Zi -c -AL -W3 -D__MSDOS__
|
|
|
|
srchsig.exe: srchsig.obj perfhlib.obj fixwild.obj
|
|
link /CO srchsig perfhlib fixwild;
|
|
|
|
srchsig.obj: srchsig.c dcc.h perfhlib.h
|
|
cl $(CFLAGS) $*.c
|
|
|
|
perfhlib.obj: perfhlib.c dcc.h perfhlib.h
|
|
cl $(CFLAGS) $*.c
|
|
|
|
fixwild.obj: fixwild.c dcc.h
|
|
cl $(CFLAGS) $*.c
|
|
|