c-kzg-4844/src/Makefile

23 lines
408 B
Makefile
Raw Normal View History

tests = fft_fr_test fft_util_test
2021-02-01 20:15:45 +00:00
.PRECIOUS: %.o
2021-02-01 20:15:45 +00:00
%.o: %.c %.h c-kzg.h
clang -Wall -c $*.c
fft_fr_test: fft_fr.o fft_fr_test.c test_util.o fft_util.o
clang -Wall -o $@ $@.c test_util.o fft_fr.o fft_util.o -L../lib -lblst
./$@
%_test: %.o %_test.c test_util.o
clang -Wall -o $@ $@.c test_util.o $*.o -L../lib -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