mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
49 lines
987 B
Makefile
49 lines
987 B
Makefile
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
|