Makefile (482B)
1 DESTDIR ?= 2 PREFIX ?= /usr/local 3 MANPREFIX ?= $(PREFIX)/man 4 5 CFLAGS += -Wall 6 LDLIBS += -lcurses 7 8 all: ttyplot 9 10 install: ttyplot ttyplot.1 11 install -d $(DESTDIR)$(PREFIX)/bin 12 install -d $(DESTDIR)$(MANPREFIX)/man1 13 install -m755 ttyplot $(DESTDIR)$(PREFIX)/bin 14 install -m644 ttyplot.1 $(DESTDIR)$(MANPREFIX)/man1 15 16 uninstall: 17 rm -f $(PREFIX)$(PREFIX)/bin/ttyplot 18 rm -f $(PREFIX)$(MANPREFIX)/man1/ttyplot.1 19 20 clean: 21 rm -f ttyplot torture 22 23 .PHONY: all clean install uninstall