Subversion Repositories shark

Rev

Rev 45 | 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 \
19
		netbuff.o \
20
		arp.o \
21
		udpip.o \
22
		net.o \
23
		int.o \
24
		net_init.o
25
 
26
C_OPT += -I../linuxcom/include
27
 
28
 
29
include $(BASE)/config/lib.mk
30