GNUmakefile 311 B

12345678910111213141516
  1. CPPFLAGS := -I/usr/local/include
  2. CXXFLAGS := -pedantic -Wall -O2 -Wno-long-long
  3. LDFLAGS := -L/usr/local/lib
  4. LDLIBS := -lkvm -lpopt
  5. .PHONY: all man clean
  6. all: dtpstree
  7. man: man1/dtpstree.1
  8. man1/%.1: %
  9. help2man -Nn '$(shell sed -e '$$ s|^// ||p;d' $<.cpp)' -o $@ $(shell realpath $<)
  10. clean:
  11. rm -f dtpstree