source: trunk/src/win32k/utils/makefile@ 4702

Last change on this file since 4702 was 4623, checked in by bird, 25 years ago

New makefile style, required changed.

File size: 2.0 KB
Line 
1##############################################################################
2# $Id: makefile,v 1.4 2000-11-19 09:02:05 bird Exp $
3#
4# PD-Win32 API
5#
6# Win32kCC.exe makefile
7#
8##############################################################################
9
10##############################################################################
11# Include
12##############################################################################
13EXETARGET=1
14NO_DEP_RULE=1
15!include ..\makefile.inc
16!include $(PDWIN32_INCLUDE)\pdwin32.mk
17
18##############################################################################
19# Object extention
20##############################################################################
21OBJEXT = obj
22
23##############################################################################
24# Tools and Flags Addjustments
25##############################################################################
26CINCLUDES = -I$(WIN32KINCLUDE) $(CINCLUDES)
27CDEFINES = $(CDEFINES) -DRING3
28!if "$(VAC3)" == "1" | "$(VAC36)" == "1"
29CFLAGS = $(CFLAGS) -Wall+ppt-ppc-inl-cnv-gnr-vft-gen-uni-ext-
30CXXFLAGS = $(CXXFLAGS) -Wall+ppt-ppc-inl-cnv-gnr-vft-
31!endif
32LD2FLAGS = $(LD2FLAGS) /pmtype:pm
33
34
35##############################################################################
36# Main targets.
37##############################################################################
38TARGET = Win32kCC
39
40OBJS = \
41$(OBJDIR)\Win32kCC.$(OBJEXT)
42
43LIBS = \
44$(RTLLIB) \
45$(PDWIN32_LIB)\win32k.lib \
46os2386.lib
47
48OS2RES = \
49$(OBJDIR)\$(TARGET).res
50
51
52##############################################################################
53# Includes the common rules.
54##############################################################################
55!include $(PDWIN32_INCLUDE)\pdwin32.post
56
57
58##############################################################################
59# Dependencies.
60##############################################################################
61dep:
62 $(DEPEND) @<<
63 -obj$(OBJEXT) -o$$(OBJDIR) $(CINCLUDES) -I$(PDWIN32_INCLUDE)
64 *.cpp *.c *.h *.rc *.dlg ..\include\*.h
65<<
66
Note: See TracBrowser for help on using the repository browser.