* added _DISABLE_TIDENTS macro to disable any ANSI/UNICODE ambiguous elements from...
[reactos.git] / reactos / subsys / csrss / makefile
1 # $Id: makefile,v 1.22 2003/08/07 04:03:24 royce Exp $
2
3 PATH_TO_TOP = ../..
4
5 #TARGET_TYPE = program
6 TARGET_TYPE = proglib
7
8 TARGET_APPTYPE = native
9
10 TARGET_NAME = csrss
11
12 TARGET_INSTALLDIR = system32
13
14 TARGET_CFLAGS = -D__NTAPP__
15
16 # require os code to explicitly request A/W version of structs/functions
17 TARGET_CFLAGS += -D_DISABLE_TIDENTS
18
19 OBJECTS_API = \
20 api/process.o \
21 api/wapi.o \
22 api/conio.o \
23 api/handle.o \
24 api/user.o
25
26 OBJECTS_MISC = \
27 $(TARGET_NAME).o \
28 init.o \
29 print.o \
30 video.o \
31 win32k.o
32
33 TARGET_OBJECTS = \
34 $(OBJECTS_API) \
35 $(OBJECTS_MISC)
36
37 include $(PATH_TO_TOP)/rules.mak
38
39 include $(TOOLS_PATH)/helper.mk
40
41 # EOF