source: trunk/src/NTDLL/makefile@ 5087

Last change on this file since 5087 was 4717, checked in by bird, 25 years ago

New makefile style. (addjustments)

File size: 949 bytes
Line 
1# $Id: makefile,v 1.26 2000-12-02 23:40:28 bird 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)\sec.obj \
29$(OBJDIR)\sync.obj \
30$(OBJDIR)\initterm.obj \
31$(OBJDIR)\time.obj \
32$(OBJDIR)\unknown.obj \
33$(OBJDIR)\arith64.obj \
34$(OBJDIR)\regfunc.obj \
35$(OBJDIR)\ntdllrsrc.obj
36
37
38#
39# Libraries. One space before the '\'.
40#
41LIBS = \
42$(ODIN32_LIB)/kernel32.lib \
43$(ODIN32_LIB)/user32.lib \
44$(ODIN32_LIB)/crtdll.lib \
45$(ODIN32_LIB)/$(ODINCRT).lib \
46OS2386.LIB \
47$(RTLLIB_O)
48
49
50#
51# Target name - name of the dll without extention and path.
52#
53TARGET = ntdll
54
55
56#
57# Includes the common rules.
58#
59!include $(ODIN32_POST_INC)
60
Note: See TracBrowser for help on using the repository browser.