reactos/reactos/lib/user32/makefile_rex
Casper Hornstrup 3f69ca4cc4 Major update of the build system:
- Created helper makefile for all targets
- Made most makefiles simpler by using the helper makefile
- Moved build tools into ./tools

Updated installation instructions

svn path=/trunk/; revision=2185
2001-08-21 20:13:17 +00:00

44 lines
747 B
Text

# $Id: makefile_rex,v 1.20 2001/08/21 20:13:07 chorns Exp $
PATH_TO_TOP = ../..
TARGET_TYPE = dynlink
TARGET_NAME = user32
TARGET_BASE = 0x77e70000
TARGET_SDKLIBS = ntdll.a kernel32.a gdi32.a
TARGET_CFLAGS = -I./include -DUNICODE -DDBG
TARGET_OBJECTS = $(TARGET_NAME).o
TARGET_CLEAN = misc/*.o windows/*.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
MISC_OBJECTS = \
misc/desktop.o \
misc/dllmain.o \
misc/sprintf.o \
misc/stubs.o \
misc/win32k.o \
misc/winsta.o \
misc/resources.o
WINDOWS_OBJECTS = \
windows/class.o \
windows/message.o \
windows/window.o
OBJECTS = \
$(MISC_OBJECTS) \
$(WINDOWS_OBJECTS)
$(TARGET_NAME).o: $(OBJECTS)
$(LD) -r $(OBJECTS) -o $(TARGET_NAME).o
# EOF