|
Revision 382, 1.2 kB
(checked in by kickback, 6 years ago)
|
first commit of GtkUIManager changes including conversion of xpm files to pngs
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
## Process this file with automake to produce Makefile.in |
|---|
| 2 |
|
|---|
| 3 |
ACLOCAL_AMFLAGS = -I m4 |
|---|
| 4 |
|
|---|
| 5 |
SUBDIRS = m4 intl po include src plugins doc pixmaps |
|---|
| 6 |
|
|---|
| 7 |
pkgdata_DATA = sweep_splash.png |
|---|
| 8 |
|
|---|
| 9 |
desktop_DATA = sweep.desktop |
|---|
| 10 |
desktopdir = $(datadir)/applications |
|---|
| 11 |
|
|---|
| 12 |
pixmapdir = $(datadir)/pixmaps |
|---|
| 13 |
pixmap_DATA = sweep.svg |
|---|
| 14 |
|
|---|
| 15 |
EXTRA_DIST = config.rpath mkinstalldirs $(desktop_DATA) $(pkgdata_DATA) $(pixmap_DATA) \ |
|---|
| 16 |
sweep.spec README.Solaris README.ALSA README.i18n acconfig.h TODO |
|---|
| 17 |
|
|---|
| 18 |
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in \ |
|---|
| 19 |
stamp-h.in \ |
|---|
| 20 |
config.guess mkinstalldirs \ |
|---|
| 21 |
missing install-sh config.sub ltconfig \ |
|---|
| 22 |
ltmain.sh acinclude.m4 |
|---|
| 23 |
|
|---|
| 24 |
#install-data-local: |
|---|
| 25 |
# @$(NORMAL_INSTALL) |
|---|
| 26 |
# if test -d $(srcdir)/pixmaps; then \ |
|---|
| 27 |
# $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \ |
|---|
| 28 |
# for pixmap in $(srcdir)/pixmaps/*; do \ |
|---|
| 29 |
# if test -f $$pixmap; then \ |
|---|
| 30 |
# $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \ |
|---|
| 31 |
# fi \ |
|---|
| 32 |
# done \ |
|---|
| 33 |
# fi |
|---|
| 34 |
|
|---|
| 35 |
dist-hook: |
|---|
| 36 |
if test -d pixmaps; then \ |
|---|
| 37 |
mkdir $(distdir)/pixmaps; \ |
|---|
| 38 |
for pixmap in pixmaps/*; do \ |
|---|
| 39 |
if test -f $$pixmap; then \ |
|---|
| 40 |
cp -p $$pixmap $(distdir)/pixmaps; \ |
|---|
| 41 |
fi \ |
|---|
| 42 |
done \ |
|---|
| 43 |
fi |
|---|