Files
lolra/ch32v/ch32v203-goertzel/ttest/Makefile
T
2024-10-06 23:06:59 -07:00

24 lines
371 B
Makefile

all : test floattest phasor_rotation_test
phasor_rotation_testt : phasor_rotation_test.c
gcc -o $@ $^ -lm -g
phasor_rotation_test : phasor_rotation_testt
./phasor_rotation_testt
floattest : floattestt
./floattestt
floattestt : floattestt.c
gcc -o $@ $^ -lm -g
test : ttest
./ttest
ttest : ttest.c
gcc -o $@ $^ -lm -g
clean :
rm -rf *.o ttest *~ floattestt