Makefile 205 B

12345678910111213
  1. all : test
  2. test : test.o emitlib.o
  3. gcc -o test test.o emitlib.o
  4. test.o : test.c
  5. gcc -c test.c -o test.o
  6. emitlib.o : ../emitlib.c ../emitlib.h
  7. gcc -c ../emitlib.c -o emitlib.o
  8. clean:
  9. rm -f test *.o