blob: 13c862b16df042d7402034d1f0d6a719538341e5 [file] [log] [blame]
ifndef SRCBASE
SRCBASE = ../../..
endif
include ../../../Makerules
include ../Makefile.inc
# This should be one of values recognized in src/Makerules
PROGS = wfa_ca
all: ${PROGS}
wfa_ca: wfa_ca.o wfa_ca_linux.o
${CC} ${CFLAGS} -DDEBUG=1 -o $@ wfa_ca.o wfa_ca_linux.o ${CALIBS}
clean:
rm -f ${PROGS} ${CLEANFILES}
release_bins:
@mkdir -p $(INSTALL_DIR)
install ${PROGS} $(INSTALL_DIR)
.phony: all clean release_bins