feca988d18e174bc4ea52ce322f2e7bd249368f5
[reactos.git] / reactos / lib / winspool / Makefile
1 #
2 # Fix this
3 #
4
5 PATH_TO_TOP = ../..
6
7 TARGET_TYPE = dynlink
8
9 TARGET_NAME = winspool
10
11 TARGET_EXTENSION = .drv
12
13 TARGET_BASE = $(TARGET_BASE_LIB_WINSPOOL)
14
15 TARGET_CFLAGS = \
16 -I./include \
17 -Wall \
18 -Werror \
19 -fno-builtin \
20 -D__REACTOS__ \
21 -D__USE_W32API \
22 -DUNICODE \
23 -DLE
24
25 # require os code to explicitly request A/W version of structs/functions
26 TARGET_CFLAGS += -D_DISABLE_TIDENTS
27
28 TARGET_LFLAGS = -nostartfiles -nostdlib
29
30 TARGET_SDKLIBS = wine.a ntdll.a kernel32.a
31
32 TARGET_OBJECTS = info.o stubs.o
33
34 TARGET_CLEAN = $(DEP_FILES)
35
36 include $(PATH_TO_TOP)/rules.mak
37
38 include $(TOOLS_PATH)/helper.mk
39
40 # Automatic dependency tracking
41 DEP_OBJECTS := $(TARGET_OBJECTS)
42 include $(PATH_TO_TOP)/tools/depend.mk
43
44 # EOF