Makefile 292 B

1234567891011121314151617
  1. include config.mk
  2. .PHONY: all clean install test
  3. all: scroll
  4. clean:
  5. rm -f scroll
  6. install: scroll
  7. cp scroll ${BINDIR}
  8. test: scroll
  9. # check usage
  10. if ./scroll; then exit 1; fi
  11. # check exit passthrough of child
  12. if ! ./scroll true; then exit 1; fi
  13. if ./scroll false; then exit 1; fi