blob: 902130877cf55a5cfc163d7b006b7291d42047ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
$NetBSD: patch-aa,v 1.19 2001/09/19 16:50:40 drochner Exp $
--- Makefile.am.orig Mon Jul 2 11:40:03 2001
+++ Makefile.am Wed Sep 19 17:58:44 2001
@@ -7,7 +7,11 @@
missing mkinstalldirs \
FAQ Install release-notes.html release-notes.txt
+if Version_1_2
+SUBDIRS = . include lib
+else
SUBDIRS = . include scripts lib clients doc @BuildTestDir@
+endif
DIST_SUBDIRS = include scripts lib clients doc test
@@ -19,15 +23,18 @@
# Lets put the informational stuff in a sub directory to avoid
# poluting /usr/local for default installs.
#
-rootdir= $(prefix)/LessTif
+if Version_2_0
+rootdir= $(docdir)
root_DATA= AUTHORS BUG-REPORTING COPYING COPYING.LIB CREDITS \
FAQ Install KNOWN_BUGS \
README RELEASE-POLICY release-notes.txt
+endif
EXTRA_DIST= acconfig.h configure \
BUG-REPORTING CREDITS FAQ Install KNOWN_BUGS RELEASE-POLICY \
NOTES
+if Version_2_0
@MAINT@changelog:
@MAINT@ @ (cd $(srcdir); cvs -Q -z9 log -rrelease_@MAJOR_VERSION@_@MINOR_VERSION@_@PICO_VERSION@: \
@MAINT@ acconfig.h acinclude.m4 configure.in Makefile.am \
@@ -40,7 +47,6 @@
@MAINT@ doc/lessdox ) \
@MAINT@ | $(srcdir)/scripts/parselog release_@MAJOR_VERSION@_@MINOR_VERSION@_@PICO_VERSION@ >$(srcdir)/ChangeLog
-htmldir= $(prefix)/LessTif/doc
html_DATA= release-notes.html
all-local: BUG-REPORTING FAQ Install
@@ -64,6 +70,7 @@
#install-data-hook:
# ${INSTALL_DATA} $(srcdir)/NOTES $(DESTDIR)$(htmldir)/release-notes.html
+endif
#
|