summaryrefslogtreecommitdiff
path: root/net-misc/switzerland/files/Makefile
blob: c1e582d56dc45dd3e65433f46a70574896558ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SRC = FastCollector.c
OBJ = ${SRC:.c=.o}

LIBS = -lpcap

all: FastCollector

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

FastCollector: $(OBJ)
	$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(OBJ) $(LIBS)