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.

60 lines
1.1 KiB

4 years ago
  1. !IFDEF NTMAKEENV
  2. #
  3. # DO NOT EDIT THIS SECTION!!! Edit .\sources. if you want to add a new source
  4. # file to this component. This section merely indirects to the real make file
  5. # that is shared by all the components of WINDOWS NT
  6. #
  7. !INCLUDE $(NTMAKEENV)\makefile.def
  8. !ELSE
  9. #***
  10. #
  11. # makefile
  12. #
  13. # This makefile builds undname.lib. The environment for this
  14. # makefile is set up by common.mak and make.bat.
  15. #
  16. #****************************************************************************
  17. !include ..\common.mak
  18. INCLUDE = $(INCLUDE);..\coff
  19. #***
  20. #
  21. #objects
  22. #
  23. #****************************************************************************
  24. OBJS = \
  25. $(ODIR)\hundname.obj
  26. #***
  27. #
  28. #target
  29. #
  30. #****************************************************************************
  31. lib : $(ODIR)\undname.lib
  32. $(ODIR)\undname.lib: $(OBJS)
  33. $(LIBER) @<<
  34. -out:$@
  35. $(OBJS)
  36. <<
  37. clean:
  38. -del $(ODIR)\*.bsc
  39. -del $(ODIR)\*.err
  40. -del $(ODIR)\*.exe
  41. -del $(ODIR)\*.ilk
  42. -del $(ODIR)\*.lib
  43. -del $(ODIR)\*.map
  44. -del $(ODIR)\*.obj
  45. -del $(ODIR)\*.pch
  46. -del $(ODIR)\*.pdb
  47. -del $(ODIR)\*.res
  48. -del $(ODIR)\*.sbr
  49. !ENDIF