source: trunk/tools/regedit/makefile@ 10366

Last change on this file since 10366 was 6565, checked in by sandervl, 24 years ago

updates

File size: 1.1 KB
Line 
1# $Id: makefile,v 1.3 2001-08-19 14:04:43 sandervl Exp $
2
3#
4# Odin32 API
5#
6# Makefile for regedit.exe.
7#
8STACKSIZE = 0x10000
9VIO = 1
10EXETARGET = 1
11
12#
13# Directory macros.
14#
15ODIN32_BIN = $(ODIN32_TOOLS)
16
17
18#
19# Tell buildenvironment that we're making an .exe.
20# Tell buildenvironment that we like to use static linked CRT.
21# Tell buildenvironment that we should not copy this into /bin.
22#
23EXETARGET = 1
24NO_MAIN_BIN_COPY = 1
25
26
27#
28# Compiler, tools, and interference rules.
29#
30!include ../../makefile.inc
31
32
33#
34# Set Win32APP flags.
35#
36CFLAGS = $(CFLAGS_WIN32APP)
37CXXFLAGS = $(CXXFLAGS_WIN32APP)
38CDEFINES = $(CDEFINES_WIN32APP)
39#LD2FLAGS = $(LD2FLAGS_WIN32APP)
40
41
42#
43# Object files. Prefix with OBJDIR and one space before the '\'.
44#
45OBJS= \
46$(OBJDIR)\regapi.obj \
47$(OBJDIR)\odinexe.obj
48
49
50#
51# Libraries. One space before the '\'.
52#
53LIBS = \
54$(ODIN32_LIB)\kernel32.lib \
55$(ODIN32_LIB)\advapi32.lib \
56$(ODIN32_LIB)\user32.lib \
57$(ODIN32_LIB)\gdi32.lib \
58$(ODIN32_LIB)\$(ODINCRT).lib \
59os2386.lib \
60$(RTLLIB_O)
61
62
63#
64# Target name - name of the exe without extention and path.
65#
66TARGET = regapi
67
68
69#
70# Includes the common rules.
71#
72!include $(ODIN32_POST_INC)
73
74
Note: See TracBrowser for help on using the repository browser.