File: Makefile.in

package info (click to toggle)
libnet 1.0.2a-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,672 kB
  • ctags: 840
  • sloc: ansic: 9,061; sh: 3,607; makefile: 413
file content (29 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (2)
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
#
#   $Id: Makefile.in,v 1.1.1.1 2000/05/25 00:28:49 route Exp $
#
#   Libnet get_mac makefile
#   
#   (c) 1998 - 2001  Mike D. Schiffman <mike@infonexus.com>
#   @configure_input@

CC          =   @CC@
CFLAGS      =   @CFLAGS@
OBJECTS     =   get_mac.o
DEFINES     +=  @DEFS@
LIBS        =   -L../lib/ -lnet @ADDITIONAL_LIBS@

.c.o:
	$(CC) $(CFLAGS) $(DEFINES) -c $< -o $@

all: 	get_mac

get_mac: $(OBJECTS)
	$(CC) get_mac.o $(LIBS) -lpcap -o ./get_mac

clean:
	rm -f *.core get_mac *.o

distclean: clean
	rm -f Makefile

# EOF