Rev 2 | 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 |
||
6 | include $(BASE)/config/config.mk |
||
7 | |||
8 | LIBRARY = hnet |
||
9 | |||
10 | OBJS_PATH = $(BASE)/drivers/net |
||
11 | |||
12 | OBJS = eth.o \ |
||
13 | 3c59x.o \ |
||
14 | 8390.o \ |
||
15 | 3c509.o \ |
||
16 | ne.o \ |
||
17 | rtl8139.o \ |
||
18 | netbuff.o \ |
||
19 | arp.o \ |
||
20 | udpip.o \ |
||
21 | net.o \ |
||
22 | int.o \ |
||
23 | net_init.o |
||
24 | |||
25 | C_OPT += -I../linuxcom/include |
||
26 | |||
27 | |||
28 | include $(BASE)/config/lib.mk |
||
29 |