# ~jhs/public_html/Makefile.inc # Until 2003.09.10 this was a sym. link -> ../Makefile.inc # but after I moved ~jhs/public_html to ~jhs/._/public_html # ~/j/build/Makefile started failing: BINDIR was unset & bins EG 8f got # installed in root of cdrom. # (rdist did not then also copy ../Makefile.inc to /pri/FreeBSD/to_cd, # though it does now). # These: # .if exists(${.CURDIR}/../Makefile.inc) # .include "${.CURDIR}/../Makefile.inc" # produce too many errors such as: # "/home/jhs/._/public_html/src/../Makefile.inc", line 10: Missing dependency operator # "/home/jhs/._/public_html/src/../Makefile.inc", line 10: Too many nested if's. 30 max. .if exists(dots/Makefile.inc) .include "dots/Makefile.inc" .else BINDIR = /usr/local/bin LIBDIR = /usr/local/lib # LDFLAGS += -L /usr/local/lib MANDIR = /usr/local/man/man# "1" etc gets appended to MANDIR # MANDIR = /usr/share/man/man# "1" etc gets appended to MANDIR .endif