~ubuntu-branches/ubuntu/trusty/darnwdl/trusty

1 by Ying-Chun Liu (PaulLiu)
Import upstream version 0.5
1
## Process this file with automake to produce Makefile.in
2
3
SUBDIRS = src po
4
5
EXTRA_DIST = \
6
	autogen.sh \
7
	darnwdl.glade \
8
	darnwdl.gladep \
9
	darnwdl.ui
10
11
install-data-local:
12
	@$(NORMAL_INSTALL)
13
	if test -d $(srcdir)/pixmaps; then \
14
	  $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
15
	  for pixmap in $(srcdir)/pixmaps/*; do \
16
	    if test -f $$pixmap; then \
17
	      $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
18
	    fi \
19
	  done \
20
	fi
21
22
dist-hook:
23
	if test -d pixmaps; then \
24
	  mkdir $(distdir)/pixmaps; \
25
	  for pixmap in pixmaps/*; do \
26
	    if test -f $$pixmap; then \
27
	      cp -p $$pixmap $(distdir)/pixmaps; \
28
	    fi \
29
	  done \
30
	fi
31