Gentoo Archives: gentoo-commits

From: "Cedric Krier (cedk)" <cedk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/switzerland/files: Makefile
Date: Sun, 03 Aug 2008 12:45:04
Message-Id: E1KPcxK-0001cH-BP@stork.gentoo.org
1 cedk 08/08/03 12:45:02
2
3 Added: Makefile
4 Log:
5 New ebuild for bug #233662 thanks to Beau Henderson
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 net-misc/switzerland/files/Makefile
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/switzerland/files/Makefile?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/switzerland/files/Makefile?rev=1.1&content-type=text/plain
13
14 Index: Makefile
15 ===================================================================
16 SRC = FastCollector.c
17 OBJ = ${SRC:.c=.o}
18
19 LIBS = -L/usr/lib -lpcap
20
21 CFLAGS ?=
22 LDFLAGS ?=
23
24 CC = gcc
25 LD = ${CC}
26
27 all: FastCollector
28
29 .c.o:
30 ${CC} -c ${CFLAGS} $<
31
32 FastCollector: ${OBJ}
33 ${LD} -o $@ ${LDFLAGS} ${OBJ} ${LIBS}