blob: 821cc18dd89c1e55a2f48bea581e7c3ecb035c49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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
|