1# Crude makefile to build the "vex" executable from test_main.c 2 3vex: test_main.c test_main.h ../pub/*.h ../priv/*.c ../priv/*.h 4 (cd ..; make -f Makefile-gcc) 5 cc -I../pub -o vex test_main.c ../libvex.a 6 7clean: 8 rm -f vex ../priv/*.o 9
1# Crude makefile to build the "vex" executable from test_main.c 2 3vex: test_main.c test_main.h ../pub/*.h ../priv/*.c ../priv/*.h 4 (cd ..; make -f Makefile-gcc) 5 cc -I../pub -o vex test_main.c ../libvex.a 6 7clean: 8 rm -f vex ../priv/*.o 9