Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 629 → Rev 630

/shark/trunk/drivers/net/makefile
0,0 → 1,33
# The Network Drivers
 
ifndef BASE
BASE=../..
endif
 
include $(BASE)/config/config.mk
 
LIBRARY = net
 
OBJS_PATH = $(BASE)/drivers/net
 
OBJS = eth.o \
8390.o \
3c509.o \
3c59x.o \
eepro100.o \
ne.o \
rtl8139.o \
netbuff.o \
arp.o \
udpip.o \
net.o \
net_init.o \
skbuff.o \
misc.o
 
OTHERINCL += -I./include
 
C_OPT += -D__KERNEL__
 
include $(BASE)/config/lib.mk