Files
hide-eid/pass-1/Makefile

18 lines
255 B
Makefile

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