File: Makefile.in

package info (click to toggle)
libnet 1.0-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,792 kB
  • ctags: 853
  • sloc: ansic: 8,738; sh: 1,793; makefile: 407
file content (40 lines) | stat: -rw-r--r-- 806 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
#   $Id: Makefile.in,v 1.2 1999/09/13 22:22:51 route Exp $
#
#   Libnet testcode toplevel Makefile
#   (c) 1998, 1999  Mike D. Schiffman <mike@infonexus.com>
#                   route|daemon9 <route@infonexus.com>
#                                
#   @configure_input@

all: test

test:
	if ! test -e ../lib/libnet.a; then \
	    cd .. &&  make; \
	fi
	cd Random; make all
	cd ICMP; make all
	cd UDP; make all
	cd TCP; make all
	cd Ethernet; make all
	cd OSPF; make all

clean:
	cd Random; make clean
	cd ICMP; make clean
	cd UDP; make clean
	cd TCP; make clean
	cd Ethernet; make clean
	cd OSPF; make clean

distclean: clean
	cd TCP; make distclean
	cd UDP; make distclean
	cd ICMP; make distclean
	cd Random; make distclean
	cd Ethernet; make distclean
	cd OSPF; make distclean
	rm -f Makefile

# EOF