mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:45:50 +00:00
Sorry jimtabor and rcampbell, it turns out that ip.a was not getting cleaned
and you guys were using an old one. sedwards helped me figure that out. I've been cleaning these dirs explicitly since i'm working in them. This should fix the clean for those. svn path=/trunk/; revision=11212
This commit is contained in:
parent
d24addb280
commit
7c750ecdd6
1 changed files with 9 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
# $Id: makefile,v 1.25 2004/10/03 20:38:48 arty Exp $
|
||||
# $Id: makefile,v 1.26 2004/10/07 04:47:42 arty Exp $
|
||||
|
||||
PATH_TO_TOP = ../../..
|
||||
|
||||
|
@ -14,6 +14,7 @@ TARGET_PCH = include/precomp.h
|
|||
TARGET_CFLAGS = \
|
||||
-D__USE_W32API \
|
||||
-DNDIS40 \
|
||||
-DMEMTRACK \
|
||||
-Wall -Werror \
|
||||
-I./include \
|
||||
-I$(PATH_TO_TOP)/drivers/lib/oskittcp/include \
|
||||
|
@ -26,7 +27,9 @@ TARGET_DDKLIBS = \
|
|||
$(PATH_TO_TOP)/dk/w32/lib/rosrtl.a \
|
||||
ndis.a
|
||||
|
||||
TARGET_CLEAN = tcpip/*.o datalink/*.o
|
||||
TARGET_CLEAN = tcpip/*.o datalink/*.o \
|
||||
$(PATH_TO_TOP)/dk/w32/lib/ip.a \
|
||||
$(PATH_TO_TOP)/dk/w32/lib/oskittcp.a
|
||||
|
||||
TCPIP_OBJECTS = tcpip/buffer.o \
|
||||
tcpip/dispatch.o \
|
||||
|
@ -42,9 +45,12 @@ TARGET_OBJECTS = \
|
|||
$(INFO_OBJECTS) \
|
||||
$(DATALINK_OBJECTS)
|
||||
|
||||
preall: $(PATH_TO_TOP)/dk/w32/lib/ip.a
|
||||
preall: $(PATH_TO_TOP)/dk/w32/lib/ip.a $(PATH_TO_TOP)/dk/w32/lib/oskittcp.a
|
||||
$(MAKE) all
|
||||
|
||||
$(PATH_TO_TOP)/dk/w32/lib/oskittcp.a:
|
||||
$(MAKE) -C $(PATH_TO_TOP)/drivers/lib/oskittcp
|
||||
|
||||
$(PATH_TO_TOP)/dk/w32/lib/ip.a:
|
||||
$(MAKE) -C $(PATH_TO_TOP)/drivers/lib/ip
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue