| Line | |
|---|
| 1 | # $Id: makefile,v 1.9 2001-02-11 15:23:28 bird Exp $
|
|---|
| 2 |
|
|---|
| 3 | #
|
|---|
| 4 | # Odin32 API
|
|---|
| 5 | #
|
|---|
| 6 | # win32k.lib makefile
|
|---|
| 7 | #
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 | #
|
|---|
| 11 | # Tell build environment we're build a public library which should
|
|---|
| 12 | # work with both exe and dlls (hence EXETARGET). It should also
|
|---|
| 13 | # invoke the additional dependency rule.
|
|---|
| 14 | #
|
|---|
| 15 | LIBTARGET=1
|
|---|
| 16 | PUBLICLIB=1
|
|---|
| 17 | EXETARGET=1
|
|---|
| 18 | ADDITIONAL_DEP = mydep
|
|---|
| 19 | WIN32KINCLUDE = ..\include
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | #
|
|---|
| 23 | # Include
|
|---|
| 24 | #
|
|---|
| 25 | !include ..\..\..\makefile.inc
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 | #
|
|---|
| 29 | # Tools and Flags Addjustments
|
|---|
| 30 | #
|
|---|
| 31 | CINCLUDES = -I$(WIN32KINCLUDE) $(CINCLUDES)
|
|---|
| 32 | CDEFINES = -DRING3 -DWIN32KLIB
|
|---|
| 33 | !if "$(VAC3)" == "1" | "$(VAC36)" == "1"
|
|---|
| 34 | CFLAGS = $(CFLAGS) -Wall+ppt-ppc-inl-cnv-gnr-vft-gen-uni-ext- -Rn
|
|---|
| 35 | CXXFLAGS = $(CINCLUDES) -Wall+ppt-ppc-inl-cnv-gnr-vft- -Rn
|
|---|
| 36 | !endif
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 | #
|
|---|
| 40 | # Object files. Prefix with OBJDIR and one space before the '\'.
|
|---|
| 41 | #
|
|---|
| 42 | OBJS = \
|
|---|
| 43 | $(OBJDIR)\libInit.obj \
|
|---|
| 44 | $(OBJDIR)\libTerm.obj \
|
|---|
| 45 | $(OBJDIR)\libWin32kInstalled.obj \
|
|---|
| 46 | $(OBJDIR)\libWin32kQueryOptionsStatus.obj \
|
|---|
| 47 | $(OBJDIR)\libWin32kSetOptions.obj \
|
|---|
| 48 | $(OBJDIR)\libDosAllocMemEx.obj \
|
|---|
| 49 | $(OBJDIR)\libW32kQueryOTEs.obj \
|
|---|
| 50 | $(OBJDIR)\libW32kQuerySystemMemInfo.obj \
|
|---|
| 51 | $(OBJDIR)\libW32kProcessReadWrite.obj \
|
|---|
| 52 | $(OBJDIR)\libGetCS.obj
|
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 | #
|
|---|
| 56 | # Target name - name of the lib without extention and path.
|
|---|
| 57 | #
|
|---|
| 58 | TARGET = win32k
|
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 | #
|
|---|
| 62 | # Includes the common rules.
|
|---|
| 63 | #
|
|---|
| 64 | !include $(ODIN32_POST_INC)
|
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 | #
|
|---|
| 68 | # Dependencies.
|
|---|
| 69 | #
|
|---|
| 70 | mydep:
|
|---|
| 71 | $(DEPEND) -a -o$$(OBJDIR) $(CINCLUDES) $(WIN32KINCLUDE)\*.h
|
|---|
| 72 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.