| 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 | #
|
|---|
| 8 | STACKSIZE = 0x10000
|
|---|
| 9 | VIO = 1
|
|---|
| 10 | EXETARGET = 1
|
|---|
| 11 |
|
|---|
| 12 | #
|
|---|
| 13 | # Directory macros.
|
|---|
| 14 | #
|
|---|
| 15 | ODIN32_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 | #
|
|---|
| 23 | EXETARGET = 1
|
|---|
| 24 | NO_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 | #
|
|---|
| 36 | CFLAGS = $(CFLAGS_WIN32APP)
|
|---|
| 37 | CXXFLAGS = $(CXXFLAGS_WIN32APP)
|
|---|
| 38 | CDEFINES = $(CDEFINES_WIN32APP)
|
|---|
| 39 | #LD2FLAGS = $(LD2FLAGS_WIN32APP)
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 | #
|
|---|
| 43 | # Object files. Prefix with OBJDIR and one space before the '\'.
|
|---|
| 44 | #
|
|---|
| 45 | OBJS= \
|
|---|
| 46 | $(OBJDIR)\regapi.obj \
|
|---|
| 47 | $(OBJDIR)\odinexe.obj
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | #
|
|---|
| 51 | # Libraries. One space before the '\'.
|
|---|
| 52 | #
|
|---|
| 53 | LIBS = \
|
|---|
| 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 \
|
|---|
| 59 | os2386.lib \
|
|---|
| 60 | $(RTLLIB_O)
|
|---|
| 61 |
|
|---|
| 62 |
|
|---|
| 63 | #
|
|---|
| 64 | # Target name - name of the exe without extention and path.
|
|---|
| 65 | #
|
|---|
| 66 | TARGET = 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.