mirror of
https://github.com/cnlohr/lolra.git
synced 2026-06-17 08:19:26 +00:00
18 lines
210 B
Makefile
18 lines
210 B
Makefile
all : test floattest
|
|
|
|
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
|