blob: 120195ded5ace3c0ed653f1c2c334c6821a18f95 (
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
|
NULL=
SUBDIRS = \
data \
icons \
idl \
intl \
cut-n-paste-code \
librsvg \
libnautilus \
libnautilus-extensions \
helper-utilities \
components \
po \
src \
test \
tools \
$(NULL)
EXTRA_DIST= \
COPYING.LIB \
RPMs-README \
HACKING \
MAINTAINERS \
nautilus.spec.in \
nautilus-clean.sh \
nautilus.desktop \
nautilus.png \
ChangeLog-20000414 \
ChangeLog-20000625 \
$(NULL)
appicondir = $(datadir)/pixmaps
appicon_DATA = nautilus.png
Applicationsdir = $(datadir)/gnome/apps/Applications
Applications_DATA = nautilus.desktop
dist-hook: nautilus.spec
cp nautilus.spec $(distdir)
install-data-hook: nautilus-clean.sh
$(mkinstalldirs) $(DESTDIR)/$(prefix)/bin
@list='nautilus-clean.sh'; for p in $$list; do\
if test -f $(srcdir)/$$p; then \
echo " $(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)/$(prefix)/bin/$$p"; \
$(INSTALL_PROGRAM) $(srcdir)/$$p $(DESTDIR)/$(prefix)/bin/$$p; \
else :; fi; \
done
|