export CFLAGS ?= -march=native -O3 export CFLAGS += -std=gnu11 -Wall selftest: selftest.c xchapolybox.c xchapolybox.h $(CC) $(CFLAGS) -o $@ selftest.c clean: rm -f selftest .PHONY: clean