migrate substitution keywords to SVN
[reactos.git] / reactos / apps / utils / net / roshttpd / makefile
1 # $Id$
2
3 PATH_TO_TOP = ../../../..
4
5 TARGET_PATH = common
6
7 TARGET_TYPE = program
8
9 TARGET_APPTYPE = console
10
11 TARGET_NAME = roshttpd
12
13 TARGET_CPPFLAGS = -I./include -DUNICODE -D_UNICODE -DDBG -D__USE_W32API -Wno-deprecated
14
15 TARGET_GCCLIBS = stdc++
16
17 TARGET_SDKLIBS = kernel32.a ws2_32.a user32.a
18
19 MAIN_OBJECTS = roshttpd.o config.o error.o http.o httpd.o
20
21 COMMON_OBJECTS = common/list.o common/socket.o common/thread.o
22
23 TARGET_OBJECTS = $(MAIN_OBJECTS) $(COMMON_OBJECTS)
24
25 TARGET_CLEAN = common/*.o
26
27 include $(PATH_TO_TOP)/rules.mak
28
29 include $(TOOLS_PATH)/helper.mk
30
31 # EOF