Makefile (99B)
1 build: 2 ${CC} -o parse parse.c -O3 -Wall 3 ${CC} -o glue glue.c -O3 -Wall 4 5 clean: 6 rm -f glue parse