c-kzg-4844/Makefile

19 lines
253 B
Makefile
Raw Normal View History

2021-02-01 20:15:45 +00:00
tests = fft_fr_test
.PRECIOUS: %.o
2021-02-01 20:15:45 +00:00
%.o: %.c %.h c-kzg.h
clang -Wall -c $*.c
%_test: %.o %_test.c test_util.o
clang -Wall -o $@ $@.c test_util.o $*.o -Llib -lblst
./$@
2021-02-01 20:15:45 +00:00
test: $(tests)
rm -f $(tests)
2021-02-01 20:15:45 +00:00
clean:
rm -f *.o
rm -f $(tests)
rm -f a.out