source: trunk/src/NTDLL/makefile@ 8889

Last change on this file since 8889 was 8672, checked in by sandervl, 23 years ago

Forward heap functions to kernel32

File size: 1.1 KB
Line 
1# $Id: makefile,v 1.32 2002-06-15 11:16:52 sandervl Exp $
2
3#
4# Odin32 API
5#
6# ntdll.dll makefile
7#
8
9
10#
11# Compiler, tools, and interference rules.
12#
13!include ../../makefile.inc
14
15
16#
17# Object files. Prefix with OBJDIR and one space before the '\'.
18#
19OBJS = \
20$(OBJDIR)\ntdll.obj \
21$(OBJDIR)\file.obj \
22$(OBJDIR)\exception.obj \
23$(OBJDIR)\nt.obj \
24$(OBJDIR)\om.obj \
25$(OBJDIR)\reg.obj \
26$(OBJDIR)\rtl.obj \
27$(OBJDIR)\rtlstr.obj \
28$(OBJDIR)\wcstring.obj \
29$(OBJDIR)\sec.obj \
30$(OBJDIR)\sync.obj \
31$(OBJDIR)\initterm.obj \
32$(OBJDIR)\time.obj \
33$(OBJDIR)\unknown.obj \
34$(OBJDIR)\large_int.obj \
35$(OBJDIR)\regfunc.obj \
36$(OBJDIR)\error.obj \
37$(OBJDIR)\loader.obj \
38##$(OBJDIR)\heap.obj \
39$(OBJDIR)\misc.obj \
40$(OBJDIR)\string.obj \
41$(OBJDIR)\ntdllrsrc.obj
42
43
44#
45# Libraries. One space before the '\'.
46#
47LIBS = \
48$(ODIN32_LIB)/kernel32.lib \
49$(ODIN32_LIB)/user32.lib \
50$(ODIN32_LIB)/crtdll.lib \
51$(ODIN32_LIB)/$(ODINCRT).lib \
52OS2386.LIB \
53$(RTLLIB_O)
54
55
56#
57# Target name - name of the dll without extention and path.
58#
59TARGET = ntdll
60
61
62#
63# Includes the common rules.
64#
65!include $(ODIN32_POST_INC)
66
Note: See TracBrowser for help on using the repository browser.