fixed dist stuff

SVN revision: 10172
This commit is contained in:
tsauerbeck 2004-05-12 18:41:58 +00:00 committed by tsauerbeck
parent 3bf171d7d0
commit dc85d89c65
4 changed files with 14 additions and 17 deletions

View File

@ -1,32 +1,17 @@
## Process this file with automake to produce Makefile.in
SUBDIRS = src proj
SUBDIRS = data src proj
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
config.h.in config.sub configure install-sh \
ltconfig ltmain.sh missing mkinstalldirs \
stamp-h.in evas_docs.tar evas_docs.tar.gz evas.c
install-data-local:
@$(NORMAL_INSTALL)
if test -d $(srcdir)/data; then \
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/data; \
for d in $(srcdir)/data/*; do \
cp -pR $$d $(DESTDIR)$(pkgdatadir)/data; \
done \
fi
dist-hook:
./gendoc; \
tar cvf evas_docs.tar doc/html doc/latex doc/man; \
rm -f evas_docs.tar.gz; \
gzip -9 evas_docs.tar; \
if test -d data; then \
mkdir $(distdir)/data; \
for d in data/*; do \
cp -pR $$d $(distdir)/data; \
done \
fi
gzip -9 evas_docs.tar;
bin_SCRIPTS = evas-config

View File

@ -1437,6 +1437,7 @@ AC_SUBST(altivec_cflags)
AC_OUTPUT([
Makefile
data/Makefile
src/Makefile
src/bin/Makefile
src/bin/evas_software_win32/Makefile

View File

@ -0,0 +1,2 @@
Makefile
Makefile.in

View File

@ -0,0 +1,9 @@
FILES = arial.ttf grunge.ttf morpheus.ttf notepad.ttf \
backdrop.png bg.png e_logo.png evas_logo.png panel.png \
panel_shadow.png panel_top.png sphere.png sphere_shadow.png \
t1.png t2.png test_pattern.png
miscdir = $(pkgdatadir)/data
misc_DATA = $(FILES)
EXTRA_DIST = $(FILES)