# ~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: # "/usr1/home/jhs/._/public_html/src/../Makefile.inc", line 10: Missing dependency operator # "/usr1/home/jhs/._/public_html/src/../Makefile.inc", line 10: Too many nested if's. 30 max. .if exists(/home/jhs/public_html/dots/Makefile.inc) .include "/home/jhs/public_html/dots/Makefile.inc" .else # BINDIR = /usr/local/bin BINDIR = /usr/bin # BINDIR must not be /usr/local/bin as my ~/j/build/Makefile would then # create a file called /tmp/jhs/usr/local/bin rather than installing into # /tmp/jhs/usr/local/bin/ # LIBDIR = /usr/local/lib LIBDIR = /usr/lib # LDFLAGS += -L /usr/local/lib # LDFLAGS += -L /usr/lib # Presumably un-necessary # MANDIR = /usr/local/man/man# "1" etc gets appended to MANDIR MANDIR = /usr/share/man/man# "1" etc gets appended to MANDIR .endif