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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
## Process this file with automake to produce Makefile.in
if NEED_ZSFB
ZSFB_DIRS = zapping_setup_fb
else
ZSFB_DIRS =
endif
# Keep order
SUBDIRS = \
common \
libtv \
libvbi \
po \
glade \
pixmaps \
plugins \
help \
$(ZSFB_DIRS) \
src \
test
EXTRA_DIST = \
acinclude.m4 \
autogen.sh \
BUGS \
ChangeLog.01 \
ChangeLog.03 \
ChangeLog.05 \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
README.plugins \
THANKS \
zapping.desktop.in \
zapping.schemas.in
desktopdir = $(datadir)/applications
desktop_DATA = zapping.desktop
@INTLTOOL_DESKTOP_RULE@
schemadir = @GCONF_SCHEMA_FILE_DIR@
schema_DATA = zapping.schemas
@INTLTOOL_SCHEMAS_RULE@
if GCONF_SCHEMAS_INSTALL
install-data-local:
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
gconftool-2 --makefile-install-rule $(top_builddir)/zapping.schemas
uninstall-local:
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
gconftool-2 --makefile-uninstall-rule $(top_builddir)/zapping.schemas
else
install-data-local:
uninstall-local:
endif
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update \
zapping.desktop \
zapping.schemas
# configure creates site_def.h if it doesn't already exist.
distcleancheck_listfiles = \
find . -name site_def.h -prune -o -type f -print
# make uninstall leaves a scrollkeeper contents skeleton in pkglocalstatedir.
# make distuninstallcheck shall ignore that.
distuninstallcheck_listfiles = \
find . -name scrollkeeper -prune -o -type f -print
dist-hook:
chown -R 500:100 $(distdir)
|