mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
634 B
36 lines
634 B
## DOS slm utilities makefile
|
|
|
|
CFLAGS= /c /DNT /Ox /W3
|
|
CFLAGSD= /c /DDEBUG /DNT /Od /Zi /W3
|
|
|
|
!IFDEF DEBUGPRINT
|
|
CFLAGSD=$(CFLAGSD) /DEBUGPRINT
|
|
!ENDIF
|
|
|
|
|
|
|
|
all: bin\slmdiffd.exe bin\slmdiff.exe
|
|
|
|
|
|
clean:
|
|
-del bin\slmdiff*.exe bin\slmdiff*.obj 2>nul
|
|
|
|
|
|
bin\slmdiffd.exe : bin\slmdiffd.obj
|
|
cd bin
|
|
tntlink @tnt slmdiffd
|
|
rem rebind slmdiffd
|
|
cd ..
|
|
|
|
bin\slmdiff.exe : bin\slmdiff.obj
|
|
cd bin
|
|
tntlink @tnt slmdiff
|
|
rem rebind slmdiff
|
|
cd ..
|
|
|
|
|
|
bin\slmdiffd.obj : slmdiff.c slmdiff_.h version.h
|
|
cl386 $(CFLAGSD) /Fobin\slmdiffd.obj slmdiff.c
|
|
|
|
bin\slmdiff.obj : slmdiff.c slmdiff_.h version.h
|
|
cl386 $(CFLAGS) /Fobin\ slmdiff.c
|