logo

system-testsuite

Unix system testsuite (highlights broken bits in GNU and BusyBox)

Makefile (212B)


  1. LIBS = -latf-c
  2. BINS = puts abs strlen
  3. all: $(BINS)
  4. .c:
  5. $(CC) $(CFLAGS) $(LDFLAGS) $(LIBS) -o $@ $<
  6. .PHONY: clean
  7. clean:
  8. rm -f $(BINS)
  9. .PHONY: test
  10. test: $(BINS)
  11. kyua test || (kyua report --verbose; false)