Why no math good

This commit is contained in:
cnlohr
2024-06-23 20:58:33 -07:00
parent 70caf8b76a
commit 7052e8c111
6 changed files with 540 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
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