File: Makefile

package info (click to toggle)
n2n 3.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,776 kB
  • sloc: ansic: 29,672; sh: 1,502; python: 621; makefile: 442; perl: 270; exp: 4
file content (19 lines) | stat: -rw-r--r-- 323 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
#
# This is not a standalone makefile, it must be called from the toplevel
# makefile to inherit the correct environment

CFLAGS+=-I../include
LDFLAGS+=-L..

.PHONY: all clean install

all: n2n_win32.a

n2n_win32.a: getopt1.o getopt.o wintap.o
	$(AR) rcs $@ $+

clean:
	rm -rf n2n_win32.a *.o *.gcno *.gcda

install:
	true