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

4 years ago
  1. #########################
  2. # makefile for Network detection
  3. #########################
  4. !include rules.mk
  5. #
  6. ################## List of all Objects Needed for Link #################
  7. #
  8. OBJ = util.obj det.obj deta.obj findstr.obj
  9. HDR = cmacros.inc detect.h
  10. #
  11. ################# Dependencies begin here ... #################
  12. #
  13. clean:
  14. -del *.obj *.lib
  15. all: detect.lib
  16. detect.lib: $(OBJ)
  17. -del detect.lib
  18. $(LIBUTIL) detect $**;
  19. detect.exe : detect.lib main.obj makefile
  20. $(LINK) $(CV) @<<
  21. /NOD +
  22. main,
  23. detect,
  24. detect
  25. detect.lib mlibcer.lib ;
  26. <<
  27. $(OBJ): $(HDR)