Makefile 170 B

123456789101112
  1. test: test.o ../libuch.a
  2. @gcc -g -o test test.o munit/munit.c ../libuch.a
  3. test.o: test.c
  4. @gcc -g -c test.c
  5. ../libuch.a:
  6. @(cd .. && make)
  7. clean:
  8. @rm -f test test.o