source: trunk/src/win32k/test/AllocMem.mak@ 10367

Last change on this file since 10367 was 5109, checked in by bird, 25 years ago

initial coding

File size: 1013 bytes
Line 
1# $Id: AllocMem.mak,v 1.1 2001-02-11 15:25:51 bird Exp $
2
3#
4# Odin32 API
5#
6# AllocMem.exe makefile
7#
8
9
10#
11# Tell buildenvironment that we're making an exe and to invoke additional dep rule
12#
13EXETARGET = 1
14ADDITIONAL_DEP = mydep
15WIN32KINCLUDE = ..\include
16VIO = 1
17
18
19#
20# Compiler, tools, and interference rules thru the win32k makefile.inc file.
21#
22!include ..\..\..\makefile.inc
23
24
25#
26# Tools and Flags Addjustments
27# (The author of this is kinda SM when it comes to warnings... ;-)
28#
29CINCLUDES = -I$(WIN32KINCLUDE) $(CINCLUDES)
30CDEFINES = $(CDEFINES) -DRING3
31
32
33#
34# Object files. Prefix with OBJDIR and one space before the '\'.
35#
36OBJS = \
37$(OBJDIR)\AllocMem.obj
38
39
40#
41# Libraries. One space before the '\'.
42#
43LIBS = \
44$(RTLLIB) \
45$(ODIN32_LIB)\win32k.lib \
46os2386.lib
47
48
49#
50# Target name - name of the exe without extention and path.
51#
52TARGET = AllocMem
53
54
55#
56# Includes the common rules.
57#
58!include $(ODIN32_POST_INC)
59
60
61#
62# Dependencies.
63#
64mydep:
65 $(DEPEND) -a -o$$(OBJDIR) $(CINCLUDES) $(WIN32KINCLUDE)\*.h
66
Note: See TracBrowser for help on using the repository browser.