migrate substitution keywords to SVN
[reactos.git] / reactos / drivers / lib / ip / makefile
1 # $Id$
2
3 PATH_TO_TOP = ../../..
4
5 TARGET_TYPE = library
6
7 TARGET_NAME = ip
8
9 TARGET_PCH = $(PATH_TO_TOP)/drivers/lib/ip/include/precomp.h
10
11 # -DMEMTRACK
12 TARGET_CFLAGS = \
13 -D__USE_W32API \
14 -D__NTDRIVER__ \
15 -D_SEH_NO_NATIVE_NLG \
16 -Wall -Werror \
17 -Iinclude \
18 -I../../net/tcpip/include \
19 -I../undis/include \
20 -I../oskittcp/include
21
22 TARGET_CLEAN = network/*.o
23
24 TARGET_OBJECTS = \
25 network/address.o \
26 network/arp.o \
27 network/checksum.o \
28 transport/datagram/datagram.o \
29 network/i386/checksum.o \
30 network/icmp.o \
31 network/interface.o \
32 network/ip.o \
33 network/loopback.o \
34 network/memtrack.o \
35 network/neighbor.o \
36 network/ports.o \
37 network/receive.o \
38 network/router.o \
39 network/routines.o \
40 network/transmit.o \
41 transport/rawip/rawip.o \
42 transport/tcp/accept.o \
43 transport/tcp/event.o \
44 transport/tcp/if.o \
45 transport/tcp/tcp.o \
46 transport/udp/udp.o
47
48 preall: all
49
50 $(TARGET_OBJECTS):: makefile
51
52 include $(PATH_TO_TOP)/rules.mak
53
54 include $(TOOLS_PATH)/helper.mk