## Process this file with automake to produce Makefile.in SUBDIRS = libcroco scintilla src po man_MANS = cssed.1 EXTRA_DIST = \ autogen.sh \ bootstrap \ libcroco \ scintilla \ data \ cssed.pc.in if INSTALLHEADERS pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = cssed.pc endif install-data-local: @$(NORMAL_INSTALL) if test -d $(srcdir)/pixmaps; then \ $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \ for pixmap in $(srcdir)/pixmaps/*; do \ if test -f $$pixmap; then \ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \ fi \ done \ fi if test -d $(srcdir)/data; then \ $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/data; \ for data in $(srcdir)/data/*; do \ if test -f $$data; then \ $(INSTALL_DATA) $$data $(DESTDIR)$(pkgdatadir)/data; \ fi \ done \ fi if INSTALLHEADERS if test -d $(srcdir)/include; then \ $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/include; \ for header in $(srcdir)/include/*.h; do \ if test -f $$header; then \ $(INSTALL_DATA) $$header $(DESTDIR)$(pkgdatadir)/include; \ fi \ done \ fi endif uninstall-local: if test -d $(DESTDIR)$(pkgdatadir); then \ rm -rf $(DESTDIR)$(pkgdatadir); \ fi dist-hook: if test -d pixmaps; then \ mkdir $(distdir)/pixmaps; \ for pixmap in pixmaps/*; do \ if test -f $$pixmap; then \ cp -p $$pixmap $(distdir)/pixmaps; \ fi \ done \ fi if test -d include; then \ mkdir $(distdir)/include; \ for header in include/*.h; do \ if test -f $$header; then \ cp -p $$header $(distdir)/include; \ fi \ done \ fi for manpage in $(man_MANS); do \ if test -e $$manpage; then \ cp -p $$manpage $(distdir); \ fi \ done