diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |