mirror of
https://github.com/cnlohr/lolra.git
synced 2026-06-15 07:19:25 +00:00
24 lines
371 B
Makefile
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
|