OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / lib / Libnet / test / OSPF / Makefile.in
1 #
2 #   $Id: Makefile.in,v 1.1.1.1 2000/05/25 00:28:49 route Exp $
3 #
4 #   Libnet OSPF Makefile.in
5 #   Copyright (c) 1999, 2000 Mike D. Schiffman <mike@infonexus.com>
6 #   @configure_input@
7
8 CC          =   @CC@
9 CFLAGS      =   @CFLAGS@
10 OBJECTS     =   ospf_hello.o     \
11                 ospf_lsa.o       \
12                 ospf_request.o   \
13
14 DEFINES     +=  @DEFS@
15 LIBS        =   -L../../lib/ -lnet @ADDITIONAL_LIBS@
16
17 .c.o:
18         $(CC) $(CFLAGS) $(DEFINES) -c $< -o $@
19
20 all:    ospf_hello       \
21         ospf_lsa         \
22         ospf_request
23  
24
25 ospf_hello: $(OBJECTS)
26         $(CC) ospf_hello.o $(LIBS) -o ./ospf_hello
27
28 ospf_lsa: $(OBJECTS)
29         $(CC) ospf_lsa.o $(LIBS) -o ./ospf_lsa
30
31 ospf_request: $(OBJECTS)
32         $(CC) ospf_request.o $(LIBS) -o ./ospf_request
33
34 clean:
35         rm -f *.core ospf_hello ospf_lsa ospf_request *.o
36
37 distclean: clean
38         rm -f Makefile
39
40 # EOF