2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-05-23 08:52:39 +00:00
Files
xNBA/src/util/Makefile
T

17 lines
342 B
Makefile

BLIB = ../bin/blib.a
CFLAGS = -Os
all : hijack prototester
hijack : hijack.c
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -lpcap -o $@ $<
prototester.o : prototester.c
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $< -idirafter ../include
prototester : prototester.o $(BLIB)
$(CC) -o $@ $< -lc $(BLIB)
clean :
rm -f hijack prototester *.o