Changeset 4715 for trunk/src/win32k/utils
- Timestamp:
- Dec 3, 2000, 12:32:41 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/utils/makefile
r4623 r4715 1 # #############################################################################2 # $Id: makefile,v 1.4 2000-11-19 09:02:05 bird Exp $ 1 # $Id: makefile,v 1.5 2000-12-02 23:32:41 bird Exp $ 2 3 3 # 4 # PD-Win32 API4 # Odin32 API 5 5 # 6 6 # Win32kCC.exe makefile 7 7 # 8 ##############################################################################9 8 10 ############################################################################## 11 # Include 12 ############################################################################## 9 10 # 11 # Tell buildenvironment that we're making an exe and to invoke additional dep rule 12 # 13 13 EXETARGET=1 14 NO_DEP_RULE=1 15 !include ..\makefile.inc 16 !include $(PDWIN32_INCLUDE)\pdwin32.mk 14 ADDITIONAL_DEP = mydep 15 WIN32KINCLUDE = ..\include 17 16 18 ##############################################################################19 # Object extention20 ##############################################################################21 OBJEXT = obj22 17 23 ############################################################################## 18 # 19 # Compiler, tools, and interference rules thru the win32k makefile.inc file. 20 # 21 !include ..\..\..\makefile.inc 22 23 24 # 24 25 # Tools and Flags Addjustments 25 ############################################################################## 26 # (The author of this is kinda SM when it comes to warnings... ;-) 27 # 26 28 CINCLUDES = -I$(WIN32KINCLUDE) $(CINCLUDES) 27 29 CDEFINES = $(CDEFINES) -DRING3 … … 30 32 CXXFLAGS = $(CXXFLAGS) -Wall+ppt-ppc-inl-cnv-gnr-vft- 31 33 !endif 32 LD2FLAGS = $(LD2FLAGS) /pmtype:pm33 34 34 35 35 ############################################################################## 36 # Main targets. 37 ############################################################################## 38 TARGET = Win32kCC 36 # 37 # Object files. Prefix with OBJDIR and one space before the '\'. 38 # 39 OBJS = \ 40 $(OBJDIR)\Win32kCC.obj 39 41 40 OBJS = \41 $(OBJDIR)\Win32kCC.$(OBJEXT)42 42 43 LIBS = \ 43 # 44 # Libraries. One space before the '\'. 45 # 46 LIBS = \ 44 47 $(RTLLIB) \ 45 $( PDWIN32_LIB)\win32k.lib \48 $(ODIN32_LIB)\win32k.lib \ 46 49 os2386.lib 47 50 51 52 # 53 # OS/2 resources. 54 # 48 55 OS2RES = \ 49 56 $(OBJDIR)\$(TARGET).res 50 57 51 58 52 # #############################################################################53 # Includes the common rules.54 # #############################################################################55 !include $(PDWIN32_INCLUDE)\pdwin32.post 59 # 60 # Target name - name of the exe without extention and path. 61 # 62 TARGET = Win32kCC 56 63 57 64 58 ############################################################################## 65 # 66 # Includes the common rules. 67 # 68 !include $(ODIN32_POST_INC) 69 70 71 # 59 72 # Dependencies. 60 ############################################################################## 61 dep: 62 $(DEPEND) @<< 63 -obj$(OBJEXT) -o$$(OBJDIR) $(CINCLUDES) -I$(PDWIN32_INCLUDE) 64 *.cpp *.c *.h *.rc *.dlg ..\include\*.h 65 << 73 # 74 mydep: 75 $(DEPEND) -a -o$$(OBJDIR) $(CINCLUDES) $(WIN32KINCLUDE)\*.h 66 76
Note:
See TracChangeset
for help on using the changeset viewer.