aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-15 21:13:42 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-15 21:13:42 -0400
commitc278aa4e696359764848edd66c6bb457e248d43e (patch)
tree7ea9fc21666f1e0abc09799ef9e5c7b1d0b3346b /Makefile
parent6be79eda61b3c64b38528c023845991a0cb4a274 (diff)
readme update; use CC in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index caa1558..fcba1f5 100644
--- a/Makefile
+++ b/Makefile
@@ -10,8 +10,8 @@ main: $(subst .cpp,.o,$(CXXFILES))
prog: main test.fp
./main < test.fp > forsp.ir
llc -march=x86 -filetype=obj --relocation-model=pic forsp.ir -O1
- clang -c support.c -m32 -Os
- clang support.o forsp.ir.o -m32 -Os
+ $(CC) -c support.c -m32 -Os
+ $(CC) support.o forsp.ir.o -m32 -Os
clean:
rm -f a.out main *.ir *.o