Added SILC Thread Queue API
[runtime.git] / apps / silcer / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 SUBDIRS = intl po macros src
4
5 EXTRA_DIST = \
6         autogen.sh ui
7
8 install-data-local:
9         @$(NORMAL_INSTALL)
10         if test -d $(srcdir)/pixmaps; then \
11           $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
12           for pixmap in $(srcdir)/pixmaps/*; do \
13             if test -f $$pixmap; then \
14               $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
15             fi \
16           done \
17         fi
18
19 dist-hook:
20         if test -d pixmaps; then \
21           mkdir $(distdir)/pixmaps; \
22           for pixmap in pixmaps/*; do \
23             if test -f $$pixmap; then \
24               cp -p $$pixmap $(distdir)/pixmaps; \
25             fi \
26           done \
27         fi
28