all: ccompiler run: ccompiler ./ccompiler test.c flat.bin simple_test: make -C tests/simple ccompiler: frontend ir gcc -g rv32.c -I../../.. -L../../frontend -lfrontend -L../../middleend -lmiddleend -L../../../lib -lcore -o ccompiler frontend: make -C ../../frontend ir: make -C ../../middleend clean: rm -f ccompiler flat.bin make -C ../../frontend clean make -C ../../middleend clean