diff options
author | B. Watson <urchlay@slackware.uk> | 2024-01-03 02:29:58 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-01-03 02:29:58 -0500 |
commit | 15624c40235d19d0c05adf4b0fcd6dd72a241db4 (patch) | |
tree | 68513f3836c83f82833eb35192961ab427c428f2 /Makefile | |
parent | 38ffb3343ce715a87bc030df948eca4b7efd391b (diff) | |
download | hcalc-15624c40235d19d0c05adf4b0fcd6dd72a241db4.tar.gz |
Tweak Makefile.
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 \ |