Leaked source code of windows server 2003
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.

26 lines
448 B

  1. !if "$(OS)" == "Windows_NT"
  2. !INCLUDE $(NTMAKEENV)\makefile.def
  3. !else
  4. CC = cl -c -W2 -AS -Zip -G2 -Ows $(DEF)
  5. LINK = link /NOE/CO/LI/NOPACK/MAP/NOD
  6. LIBS = slibcer
  7. .c.obj:
  8. $(CC) $*.c
  9. goal : encrypt.exe people.cry
  10. encrypt.exe : encrypt.obj
  11. $(LINK) encrypt.obj, encrypt, encrypt, $(LIBS) ;
  12. people.cry : encrypt.exe people.txt
  13. encrypt people.txt people.cry
  14. clean:
  15. del *.exe
  16. del *.sym
  17. del *.obj
  18. del *.map
  19. !endif