Subversion Repositories shark

Rev

Rev 3 | 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
OSLIB=$(BASE)/oslib
7
 
2 pj 8
include $(BASE)/config/config.mk
9
 
10
LIBRARY       = hnet
11
 
12
OBJS_PATH     = $(BASE)/drivers/net
13
 
14
OBJS  = eth.o \
15
		3c59x.o \
16
		8390.o \
17
		3c509.o \
18
		ne.o \
19
		rtl8139.o \
20
		netbuff.o \
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