German language file (minor update)
[reactos.git] / reactos / subsys / smss / makefile
1 # $Id$
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = program
6
7 TARGET_APPTYPE = native
8
9 TARGET_SDKLIBS = ntdll.a smdll.a
10
11 TARGET_NAME = smss
12
13 TARGET_INSTALLDIR = system32
14
15 TARGET_CFLAGS = -D__NTAPP__
16
17 # require os code to explicitly request A/W version of structs/functions
18 TARGET_CFLAGS += -D_DISABLE_TIDENTS -Wall -Werror
19
20 TARGET_OBJECTS = $(TARGET_NAME).o \
21 init.o initheap.o initenv.o initobdir.o initdosdev.o \
22 initrun.o initmv.o initwkdll.o initpage.o initss.o \
23 initreg.o \
24 smapi.o smapicomp.o smapiexec.o \
25 client.o debug.o print.o
26
27 include $(PATH_TO_TOP)/rules.mak
28
29 include $(TOOLS_PATH)/helper.mk
30
31 # EOF