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