12 lines
149 B
Makefile
12 lines
149 B
Makefile
![]() |
#!/usr/bin/make -f
|
||
|
|
||
|
CFLAGS=-Wall -Werror --std=gnu99
|
||
|
|
||
|
LDFLAGS=-ljson-c -lpcap
|
||
|
|
||
|
.PHONY: clean
|
||
|
|
||
|
all: wrapper unwrapper
|
||
|
|
||
|
clean:
|
||
|
rm -f wrapper unwrapper
|