Subversion Repositories shark

Rev

Rev 64 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
# The Network Drivers
2
 
3
ifndef BASE
4
BASE=../..
5
endif
45 pj 6
 
2 pj 7
include $(BASE)/config/config.mk
8
 
9
LIBRARY       = hnet
10
 
11
OBJS_PATH     = $(BASE)/drivers/net
12
 
13
OBJS  = eth.o \
14
		3c59x.o \
15
		8390.o \
16
		3c509.o \
17
		ne.o \
18
		rtl8139.o \
442 giacomo 19
		eepro100.o \
20
                netbuff.o \
2 pj 21
		arp.o \
22
		udpip.o \
23
		net.o \
24
		int.o \
25
		net_init.o
26
 
27
C_OPT += -I../linuxcom/include
28
 
29
 
30
include $(BASE)/config/lib.mk
31