9 lines
133 B
Makefile
9 lines
133 B
Makefile
all: test_ir
|
|
|
|
|
|
test_ir: frontend
|
|
gcc -g ../ir.c test_ir.c -L../../frontend -lfrontend -o test_ir
|
|
|
|
frontend:
|
|
make -C ../../frontend
|