source: trunk/src/NTDLL/makefile@ 10366

Last change on this file since 10366 was 9992, checked in by sandervl, 22 years ago

PF: GCC 3.2.1 updates + NTDLL resync

File size: 1.7 KB
Line 
1# $Id: makefile,v 1.38 2003-04-08 12:47:06 sandervl Exp $
2
3#
4# Odin32 API
5#
6# ntdll.dll makefile
7#
8
9
10CCENV = EMX
11WRC_PREFIX_RESOURCE=1
12
13#
14# Compiler, tools, and interference rules.
15#
16!include ../../makefile.inc
17
18CDEFINES = -I$(ODIN32_INCLUDE)\emxruntime $(CDEFINES)
19
20#
21# Object files. Prefix with OBJDIR and one space before the '\'.
22#
23OBJS = \
24$(OBJDIR)\ntdll.obj \
25$(OBJDIR)\file.obj \
26$(OBJDIR)\exception.obj \
27$(OBJDIR)\nt.obj \
28$(OBJDIR)\om.obj \
29$(OBJDIR)\reg.obj \
30$(OBJDIR)\rtl.obj \
31$(OBJDIR)\rtlstr.obj \
32$(OBJDIR)\rtlbitmap.obj \
33$(OBJDIR)\wcstring.obj \
34$(OBJDIR)\sec.obj \
35$(OBJDIR)\sync.obj \
36$(OBJDIR)\initterm.obj \
37$(OBJDIR)\initntdll.obj \
38$(OBJDIR)\time.obj \
39$(OBJDIR)\unknown.obj \
40$(OBJDIR)\large_int.obj \
41$(OBJDIR)\large_int_odin.obj \
42$(OBJDIR)\regfunc.obj \
43$(OBJDIR)\error.obj \
44$(OBJDIR)\loader.obj \
45##$(OBJDIR)\heap.obj \
46$(OBJDIR)\misc.obj \
47$(OBJDIR)\string.obj \
48$(OBJDIR)\ntdllrsrc.obj
49
50
51#
52# Libraries. One space before the '\'.
53#
54
55# -liberty_s -lstdcxx -lExCRuntime -lExDllSupport -lc_alias -lgcc_eh
56# -lgcc -lc -lc_dllso -lgcc_eh -lgcc -lc -lsys -los2 -lend
57
58LIBS = \
59$(ODIN32_LIB_)\EmxSupport\EMXOS2FSRoutines.lib \
60$(EMX)\lib\iberty_s.lib \
61$(EMX)\lib\gcc-lib\i386-pc-os2-emx\3.2.1\mt\stdcxx.lib \
62$(EMX)\lib\c_alias.lib \
63$(EMX)\lib\gcc-lib\i386-pc-os2-emx\3.2.1\mt\gcc_eh.lib \
64$(EMX)\lib\gcc-lib\i386-pc-os2-emx\3.2.1\mt\gcc.lib \
65$(EMX)\lib\mt\c.lib \
66$(EMX)\lib\mt\c_dllso.lib \
67$(EMX)\lib\mt\sys.lib \
68$(EMX)\lib\os2.lib \
69$(ODIN32_LIB_)\EmxSupport\ExCRuntime.lib \
70$(ODIN32_LIB_)\EmxSupport\ExDllSupport.lib \
71$(ODIN32_LIB)\kernel32.lib \
72$(ODIN32_LIB)\user32.lib
73
74#
75# Target name - name of the dll without extention and path.
76#
77TARGET = ntdll
78
79#
80# Includes the common rules.
81#
82!include $(ODIN32_POST_INC)
83
Note: See TracBrowser for help on using the repository browser.