blob: 9040369933ea8a2afd942ceb49cad7c386e8a1b1 (
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
|
$NetBSD: patch-aa,v 1.2 2005/07/25 10:55:44 adam Exp $
--- Makefile.in.orig 2005-06-24 08:38:22.000000000 +0000
+++ Makefile.in
@@ -159,8 +159,6 @@ man_MANS = xfe.1 xfv.1 xfi.1 xfq.1
SUBDIRS = intl po m4 src icons
DIST_SUBDIRS = intl po m4 src icons
-rcdir = $(prefix)/lib/foxrc
-rc_DATA = Desktop
EXTRA_DIST = autogen.sh config.h i18n.h xfe.1 xfv.1 xfi.1 xfq.1 \
ABOUT-NLS TODO FAQ BUGS xfe.spec.in Desktop.in xfe.png xfi.png xfq.png xfv.png \
@@ -180,7 +178,7 @@ DIST_SOURCES =
NROFF = nroff
MANS = $(man_MANS)
-DATA = $(icon_DATA) $(rc_DATA)
+DATA = $(icon_DATA)
RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
@@ -304,22 +302,8 @@ uninstall-iconDATA:
done
rcDATA_INSTALL = $(INSTALL_DATA)
install-rcDATA: $(rc_DATA)
- @$(NORMAL_INSTALL)
- $(mkinstalldirs) $(DESTDIR)$(rcdir)
- @list='$(rc_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- f="`echo $$p | sed -e 's|^.*/||'`"; \
- echo " $(rcDATA_INSTALL) $$d$$p $(DESTDIR)$(rcdir)/$$f"; \
- $(rcDATA_INSTALL) $$d$$p $(DESTDIR)$(rcdir)/$$f; \
- done
uninstall-rcDATA:
- @$(NORMAL_UNINSTALL)
- @list='$(rc_DATA)'; for p in $$list; do \
- f="`echo $$p | sed -e 's|^.*/||'`"; \
- echo " rm -f $(DESTDIR)$(rcdir)/$$f"; \
- rm -f $(DESTDIR)$(rcdir)/$$f; \
- done
# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
|