|
Revision 2, 0.6 kB
(checked in by nextime, 2 years ago)
|
Initial import, branching from morphix svn
|
| Line | |
|---|
| 1 |
## Process this file with automake to produce Makefile.in |
|---|
| 2 |
|
|---|
| 3 |
SUBDIRS = src po |
|---|
| 4 |
|
|---|
| 5 |
EXTRA_DIST = \ |
|---|
| 6 |
autogen.sh \ |
|---|
| 7 |
dialupconf.glade \ |
|---|
| 8 |
dialupconf.gladep |
|---|
| 9 |
|
|---|
| 10 |
install-data-local: |
|---|
| 11 |
@$(NORMAL_INSTALL) |
|---|
| 12 |
if test -d $(srcdir)/pixmaps; then \ |
|---|
| 13 |
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \ |
|---|
| 14 |
for pixmap in $(srcdir)/pixmaps/*; do \ |
|---|
| 15 |
if test -f $$pixmap; then \ |
|---|
| 16 |
$(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \ |
|---|
| 17 |
fi \ |
|---|
| 18 |
done \ |
|---|
| 19 |
fi |
|---|
| 20 |
|
|---|
| 21 |
dist-hook: |
|---|
| 22 |
if test -d pixmaps; then \ |
|---|
| 23 |
mkdir $(distdir)/pixmaps; \ |
|---|
| 24 |
for pixmap in pixmaps/*; do \ |
|---|
| 25 |
if test -f $$pixmap; then \ |
|---|
| 26 |
cp -p $$pixmap $(distdir)/pixmaps; \ |
|---|
| 27 |
fi \ |
|---|
| 28 |
done \ |
|---|
| 29 |
fi |
|---|
| 30 |
|
|---|