Changeset 5086 for trunk/src/win32k/utils
- Timestamp:
- Feb 10, 2001, 12:11:48 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/utils/makefile
r4715 r5086 1 # $Id: makefile,v 1. 5 2000-12-02 23:32:41bird Exp $1 # $Id: makefile,v 1.6 2001-02-10 11:11:48 bird Exp $ 2 2 3 3 # … … 13 13 EXETARGET=1 14 14 ADDITIONAL_DEP = mydep 15 WIN32KAPI = ..\api 16 WIN32KMISC = ..\misc 15 17 WIN32KINCLUDE = ..\include 16 18 … … 38 40 # 39 41 OBJS = \ 40 $(OBJDIR)\Win32kCC.obj 42 $(OBJDIR)\Win32kCC.obj 43 #$(OBJDIR)\api.obj \ 44 #$(OBJDIR)\locks.obj 41 45 42 46 … … 75 79 $(DEPEND) -a -o$$(OBJDIR) $(CINCLUDES) $(WIN32KINCLUDE)\*.h 76 80 81 82 # 83 # Extra rules to build api.obj and locks.obj 84 # 85 !if "$(VAC3)" == "1" | "$(VAC36)" == "1" 86 $(OBJDIR)\api.obj: $(WIN32KAPI)\api.cpp 87 $(CC) -c $(CXXFLAGS) $(CDEFINES) $(CINCLUDES) -Fo$(OBJDIR)\$(@B).obj $** 88 89 $(OBJDIR)\locks.obj: $(WIN32KMISC)\locks.asm 90 $(AS) $(ASFLAGS) -I:$(WIN32KINCLUDE) -Fdo:$(OBJDIR) $** 91 !else 92 !error "not ready for this compiler yet" 93 !endif 94 95 96 97
Note:
See TracChangeset
for help on using the changeset viewer.