Skip to content

Commit

Permalink
Initial revision
Browse files Browse the repository at this point in the history
  • Loading branch information
vogon committed Oct 8, 2002
1 parent 4f61e25 commit 140b8ca
Show file tree
Hide file tree
Showing 31 changed files with 19,660 additions and 0 deletions.
Empty file added ignus/AUTHORS
Empty file.
Empty file added ignus/ChangeLog
Empty file.
30 changes: 30 additions & 0 deletions ignus/Makefile.am
@@ -0,0 +1,30 @@
## Process this file with automake to produce Makefile.in

SUBDIRS = src po

EXTRA_DIST = \
autogen.sh \
ignus.glade \
ignus.gladep

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

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

0 comments on commit 140b8ca

Please sign in to comment.