Windows NT 4.0 source code leak
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
589 B

#########################
# makefile for Network detection
#########################
!include rules.mk
#
################## List of all Objects Needed for Link #################
#
OBJ = util.obj det.obj deta.obj findstr.obj
HDR = cmacros.inc detect.h
#
################# Dependencies begin here ... #################
#
clean:
-del *.obj *.lib
all: detect.lib
detect.lib: $(OBJ)
-del detect.lib
$(LIBUTIL) detect $**;
detect.exe : detect.lib main.obj makefile
$(LINK) $(CV) @<<
/NOD +
main,
detect,
detect
detect.lib mlibcer.lib ;
<<
$(OBJ): $(HDR)