19 lines
343 B
Makefile
19 lines
343 B
Makefile
#!/usr/bin/make -f
|
|
CFLAGS := $(CFLAGS) -Wall -Werror --std=c99
|
|
LDFLAGS := $(LDFLAGS) -ljson-c -lssl -lcrypto
|
|
|
|
.PHONY: clean
|
|
|
|
all: wrapper unwrapper hide-eid
|
|
|
|
rlocs.o: util.o
|
|
|
|
packet.o: util.o
|
|
|
|
wrapper: util.o rlocs.o packet.o
|
|
unwrapper: util.o rlocs.o packet.o
|
|
hide-eid: util.o rlocs.o packet.o
|
|
|
|
clean:
|
|
rm -f hide-eid wrapper unwrapper *.o
|