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

!if "$(OS)" == "Windows_NT"
!INCLUDE $(NTMAKEENV)\makefile.def
!else
CC = cl -c -W2 -AS -Zip -G2 -Ows $(DEF)
LINK = link /NOE/CO/LI/NOPACK/MAP/NOD
LIBS = slibcer
.c.obj:
$(CC) $*.c
goal : encrypt.exe people.cry
encrypt.exe : encrypt.obj
$(LINK) encrypt.obj, encrypt, encrypt, $(LIBS) ;
people.cry : encrypt.exe people.txt
encrypt people.txt people.cry
clean:
del *.exe
del *.sym
del *.obj
del *.map
!endif