makefile 220 B

12345678910111213141516
  1. CFLAGS=-g -Wall -Wextra -O3 -std=gnu99
  2. objects=bom.o
  3. test_bom: $(objects)
  4. clean:
  5. @rm *.o
  6. test: test_bom
  7. @rm *.o
  8. @cp testBOM testRemove
  9. @cp testNoBOM testAdd
  10. @./test_bom
  11. @rm test_bom
  12. @rm testRemove
  13. @rm testAdd