mirror of
https://github.com/reactos/reactos.git
synced 2026-09-13 13:18:33 +08:00
51 lines
813 B
Makefile
51 lines
813 B
Makefile
# $Id: makefile,v 1.12 2004/02/15 00:04:07 arty Exp $
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = library
|
|
|
|
TARGET_NAME = rosrtl
|
|
|
|
TARGET_LFLAGS = -nostartfiles -nostdlib
|
|
|
|
TARGET_SDKLIBS = ntdll.a kernel32.a advapi32.a
|
|
|
|
THREAD_OBJECTS = \
|
|
thread/create.o \
|
|
thread/exit.o \
|
|
thread/stack.o
|
|
|
|
STRING_OBJECTS = \
|
|
string/append.o
|
|
|
|
REGISTRY_OBJECTS = \
|
|
registry/registry.o
|
|
|
|
MISC_OBJECTS = \
|
|
misc/devmode.o \
|
|
misc/logfont.o \
|
|
misc/qsort.o
|
|
|
|
include $(PATH_TO_TOP)/config
|
|
|
|
include makefile.$(ARCH)
|
|
|
|
TARGET_TYPE = library
|
|
|
|
TARGET_NAME = rosrtl
|
|
|
|
TARGET_CFLAGS = -D__USE_W32API -Wall -Werror
|
|
|
|
TARGET_OBJECTS = $(THREAD_OBJECTS) $(MISC_OBJECTS) $(STRING_OBJECTS) \
|
|
$(REGISTRY_OBJECTS)
|
|
|
|
DEP_OBJECTS = $(TARGET_OBJECTS)
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
include $(TOOLS_PATH)/depend.mk
|
|
|
|
# EOF
|