8fad567eef39d8d15c89323fe0644e0e64d706e8
[reactos.git] / reactos / lib / rossym / Makefile
1 PATH_TO_TOP = ../..
2
3 TARGET_TYPE = library
4
5 TARGET_NAME = rossym
6
7 include $(PATH_TO_TOP)/config
8
9 TARGET_CFLAGS = -Wall -Werror -ffreestanding -D__USE_W32API
10
11 TARGET_OBJECTS = \
12 delete.o \
13 find.o \
14 fromfile.o \
15 frommem.o \
16 fromraw.o \
17 getraw.o \
18 init.o \
19 initkm.o \
20 initum.o \
21 zwfile.o
22
23 include $(PATH_TO_TOP)/rules.mak
24
25 include $(TOOLS_PATH)/helper.mk
26
27 DEP_OBJECTS := $(TARGET_OBJECTS)
28
29 TARGET_CLEAN = $(DEP_FILES)
30
31 include $(PATH_TO_TOP)/tools/depend.mk
32
33 # EOF