c-kzg-4844/src/Makefile

26 lines
569 B
Makefile
Raw Normal View History

2021-02-02 23:06:42 +00:00
tests = fft_util_test fft_fr_test fft_g1_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
2021-02-03 00:06:51 +00:00
fft_fr_test: fft_fr.o fft_fr_test.c test_util.o fft_util.o Makefile
clang -Wall -o $@ $@.c test_util.o fft_fr.o fft_util.o -L../lib -lblst
./$@
2021-02-03 00:06:51 +00:00
fft_g1_test: fft_g1.o fft_g1_test.c test_util.o fft_util.o Makefile
2021-02-02 23:06:42 +00:00
clang -Wall -o $@ $@.c test_util.o fft_g1.o fft_util.o -L../lib -lblst
./$@
2021-02-03 00:06:51 +00:00
%_test: %.o %_test.c test_util.o Makefile
clang -Wall -o $@ $@.c test_util.o $*.o -L../lib -lblst
./$@
2021-02-01 20:15:45 +00:00
test: $(tests)
clean:
rm -f *.o
rm -f $(tests)
rm -f a.out