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.
|
|
# # Microsoft Confidential # Copyright (C) Microsoft Corporation 1988-1991 # All Rights Reserved. # # # Make file for disp_win.sys # # Modification History # # V-TORUM 29-Jul-1993 Ported for NT DOS Support
include ../../make.inc !IF "$(PROCESSOR_ARCHITECTURE)" == "x86" || "$(BUILD_DEFAULT_TARGETS)" == "-386" aflags=$(aflags) -D_X86_ !endif
target =$(DEST)\disp_win.sys
# ####################### Dependencies Begin Here ########################## #
all: $(target) binplace -o $(ALT_PROJECT_TARGET) $(target)
clean: cleanup all
cleanup: cd $(DEST) if exist *.obj del *.obj if exist *.bin del *.bin if exist *.exs del *.exs if exist *.map del *.map if exist *.sym del *.sym cd ..\..\.. if exist $(target) del $(target)
$(DEST)\disp_win.obj : disp_win.asm \ disp_win.inc \ makefile.sub \ $(inc)\struc.inc
$(DEST)\disp_win.exs : $(DEST)\disp_win.obj \ makefile.sub link16 /map $(DEST)\disp_win.obj,$(DEST)\disp_win.exs,$(DEST)\disp_win.map;
$(target): $(DEST)\disp_win.exs
|