--- Makefile.orig 1996-01-16 00:36:38.000000000 -0500 +++ Makefile 2014-08-09 14:36:10.000000000 -0400 @@ -15,13 +15,13 @@ # # add -DUSE_READLINE To compile in support for the GNU readline library. -CFLAGS= -s -O2 -DUSE_READLINE -CC= gcc -LIBS= -lreadline -ltermcap +CFLAGS+= -s -DUSE_READLINE ${CPPFLAGS} +CC?= gcc +LIBS= -lreadline -ltermcap ${LDFLAGS} ALLFILES= makefile cdgram.y cdlex.l cdecl.c cdecl.1 testset testset++ -BINDIR= /usr/bin -MANDIR= /usr/man/man1 -CATDIR= /usr/man/cat1 +BINDIR= $(PREFIX)/bin +MANDIR= $(PREFIX)/man/man1 +CATDIR= $(PREFIX)/man/cat1 INSTALL= install -c INSTALL_DATA= install -c -m 644 @@ -43,10 +43,10 @@ ./c++decl < testset++ install: cdecl - $(INSTALL) cdecl $(BINDIR) - ln $(BINDIR)/cdecl $(BINDIR)/c++decl - $(INSTALL_DATA) cdecl.1 $(MANDIR) - $(INSTALL_DATA) c++decl.1 $(MANDIR) + ${BSD_INSTALL_PROGRAM} cdecl $(STAGEDIR)$(BINDIR) + ln -s $(BINDIR)/cdecl $(STAGEDIR)$(BINDIR)/c++decl + ${BSD_INSTALL_MAN} cdecl.1 $(STAGEDIR)$(MANDIR) + ln -s $(MANDIR)/cdecl.1 $(STAGEDIR)$(MANDIR)/c++decl.1 clean: rm -f cdgram.c cdlex.c cdecl y.output c++decl