File: Makefile.in

package info (click to toggle)
libnet0 1.0.2a-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge
  • size: 2,860 kB
  • ctags: 858
  • sloc: sh: 9,149; ansic: 9,055; makefile: 192
file content (28 lines) | stat: -rw-r--r-- 576 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
#
#   $Id: Makefile.in,v 1.1.1.1 2000/05/25 00:28:49 route Exp $
#
#   Libnet simple testcode makefile
#   Copyright (c) 1998, 1999, 2000 Mike D. Schiffman <mike@infonexus.com>
#   @configure_input@

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

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

all:    prand_trials

prand_trials: $(OBJECTS)
	$(CC) prand_trials.o $(LIBS) -o ./prand_trials

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

distclean: clean
	rm -f Makefile

# EOF