diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,11 +1,9 @@ # Makefile for hcalc. Requires GNU make. -PROJ = hcalc - +# Users and packagers, feel free to override these: CC = gcc CFLAGS = -Wall -g LIBS = - DESTDIR = PREFIX = /usr BINDIR = $(PREFIX)/bin @@ -25,7 +23,9 @@ INSTALL_USER = endif MKDIR_P = mkdir -p GZIP = gzip +# End of user-ovverideable stuff. No user-serviceable parts below this line. +PROJ = hcalc MANPAGE = $(PROJ).1 OBJS = \ hcalc.o \ |