OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / lib / Libnet / support / bpf-lkm / OpenBSD / Makefile.in
1 SRCS= ether_mod-@KERNEL_VERSION@.c ether_mod_load.c
2 OBJS=$(SRCS:.c=.o)
3
4 MODOBJ=ether_spoof.o
5 CFLAGS+= -D_KERNEL -I/sys
6
7 .include <bsd.subdir.mk>
8
9 all:    $(MODOBJ)
10
11 $(MODOBJ): $(OBJS)
12         $(LD) -r -o $(MODOBJ) $(OBJS) 
13 clean:
14         rm -f *.o
15
16 distclean:
17         rm -f Makefile config.log config.cache config.status *.o
18