Source code of Windows XP (NT5)
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
807 B

#
# Generic makefile for NT build process and Win95 DEV enviroment
#
!if "$(OS)" == "Windows_NT"
!INCLUDE $(NTMAKEENV)\makefile.def
!else
!include $(MANROOT)\build.mk
debug.FE retail.FE internal.FE: $(@B).fmk
debug.fmk retail.fmk internal.fmk:
@if not exist $(MANROOT)\$(@B).FE\nul md $(MANROOT)\$(@B).FE
@if not exist $(MANROOT)\$(@B).FE\bin\nul md $(MANROOT)\$(@B).FE\bin
@if not exist $(MANROOT)\$(@B)\lib\nul md $(MANROOT)\$(@B)\lib
@if not exist $(MANROOT)\$(@B)\lib16\nul md $(MANROOT)\$(@B)\lib16
@if not exist $(MANROOT)\$(@B)\inc\nul md $(MANROOT)\$(@B)\inc
@if not exist $(@B).FE\nul md $(@B).FE
@cd $(@B).FE
@nmake -nologo -f ..\$(MAKENAME) DEBUG="$(@B)" FE=FE
@cd ..
@echo *** Done making $(@B).FE ***
!endif