mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
81345fd691
next few weeks. I'm going through the DFLAT api doc and fixing the export names and then going to try to build a simple hello dflat application. svn path=/trunk/; revision=2844
61 lines
729 B
Makefile
61 lines
729 B
Makefile
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_DEFONLY = yes
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NAME = dflat32
|
|
|
|
TARGET_LFLAGS =
|
|
|
|
TARGET_SDKLIBS =
|
|
|
|
TARGET_GCCLIBS =
|
|
|
|
TARGET_BASE = 0x98000000
|
|
|
|
TARGET_CFLAGS = # -pipe -O2 -Wall -Wstrict-prototypes -fno-builtin -DDBG
|
|
|
|
TARGET_OBJECTS = \
|
|
applicat.o \
|
|
box.o \
|
|
checkbox.o \
|
|
clipbord.o \
|
|
config.o \
|
|
console.o \
|
|
decomp.o \
|
|
dfalloc.o \
|
|
dialbox.o \
|
|
dialogs.o \
|
|
dllmain.o \
|
|
editbox.o \
|
|
lists.o \
|
|
helpbox.o \
|
|
listbox.o \
|
|
log.o \
|
|
message.o \
|
|
menu.o \
|
|
menubar.o \
|
|
menus.o \
|
|
msgbox.o \
|
|
normal.o \
|
|
pictbox.o \
|
|
popdown.o \
|
|
keys.o \
|
|
radio.o \
|
|
rect.o \
|
|
spinbutt.o \
|
|
statbar.o \
|
|
stubs.o\
|
|
sysmenu.o \
|
|
text.o \
|
|
textbox.o \
|
|
video.o \
|
|
watch.o \
|
|
window.o
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|