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 LINUXCOMP directory
2
 
3
ifndef BASE
4
BASE=../..
5
endif
64 pj 6
 
2 pj 7
include $(BASE)/config/config.mk
8
 
9
LIBRARY       = comp
10
 
11
OBJS_PATH     = $(BASE)/drivers/linuxcom
12
 
13
OBJS  = skbuff.o \
14
		timer.o \
15
		misc.o \
16
		auto_irq.o \
17
		int.o \
18
		net_init.o
19
 
20
C_OPT += -I../linuxcom/include
21
 
22
 
23
include $(BASE)/config/lib.mk
24
 
25
 
26
 
27
 
28