76aeaddfc5
Regen the patches files (one file per patch). Fix for NetBSD ELF platform: files/stab-elf.c and config/untested/elf-netbsd-cc (by way of patches/patch-af) adjusted. Thanks to Nick for the helping hand and to Alistair for the previous work. This should close PR 13527. Make X11 support conditional by way if the ELK_USE_X11 variable. I tried to enable Motif support: only Motif 1.X should work but even with the lesstif12 package it does not - it does compile though. So Motif support if commented out but leaved in case someone want to fix ELK.
36 lines
788 B
Text
36 lines
788 B
Text
$NetBSD: patch-aa,v 1.4 2002/01/09 23:04:55 seb Exp $
|
|
|
|
--- Makefile.orig Mon Jul 31 14:56:26 1995
|
|
+++ Makefile
|
|
@@ -13,12 +13,7 @@
|
|
src\
|
|
scm\
|
|
lib/misc\
|
|
- lib/unix\
|
|
- lib/xlib\
|
|
- lib/xt\
|
|
- lib/xaw\
|
|
- lib/xm\
|
|
- lib/xm/xt
|
|
+ lib/unix ${ELK_SUBDIRS}
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
@@ -37,10 +32,16 @@
|
|
done
|
|
|
|
install:
|
|
- @for i in $(SUBDIRS) ;\
|
|
+ @for i in $(SUBDIRS) doc/man;\
|
|
do \
|
|
echo Installing $$i...; \
|
|
( cd $$i ; $(MAKE) install ) || exit $$?; \
|
|
+ done
|
|
+ mkdir -p ${PREFIX}/share/doc/elk
|
|
+ @for i in bitstring cprog kernel oops record regexp unix usenix \
|
|
+ xlib xt; do \
|
|
+ echo "Installing postscript docs for $$i"; \
|
|
+ ${BSD_INSTALL_DATA} doc/$$i/*.ps ${PREFIX}/share/doc/elk; \
|
|
done
|
|
|
|
localize:
|