fixed dist stuff

SVN revision: 10173
This commit is contained in:
tsauerbeck 2004-05-12 18:57:57 +00:00 committed by tsauerbeck
parent dc85d89c65
commit 45adcddc24
10 changed files with 35 additions and 17 deletions

View File

@ -1,32 +1,17 @@
## Process this file with automake to produce Makefile.in
SUBDIRS = src debian examples
SUBDIRS = data src debian examples
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
config.h.in config.sub configure install-sh \
ltconfig ltmain.sh missing mkinstalldirs \
stamp-h.in
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 ecore_docs.tar doc/html doc/latex doc/man; \
rm -f ecore_docs.tar.gz; \
gzip -9 ecore_docs.tar; \
if test -d data; then \
mkdir $(distdir)/data; \
for file in data/*; do \
cp -pR $$file $(distdir)/data; \
done \
fi
gzip -9 ecore_docs.tar;
bin_SCRIPTS = ecore-config

View File

@ -627,6 +627,10 @@ AC_SUBST(USE_OPENSSL)
AC_OUTPUT([
Makefile
ecore-config
data/Makefile
data/fonts/Makefile
data/images/Makefile
data/pointers/Makefile
src/Makefile
src/bin/Makefile
src/lib/Makefile

View File

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

View File

@ -0,0 +1 @@
SUBDIRS = fonts images pointers

View File

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

View File

@ -0,0 +1,6 @@
FONTS = helmet.ttf
fontdir = $(pkgdatadir)/data/fonts
font_DATA = $(FONTS)
EXTRA_DIST = $(FONTS)

View File

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

View File

@ -0,0 +1,8 @@
IMAGES = ball.png bar.png bar_shad_above.png bar_shad_below.png \
bg.png crosshair.png e_logo.png evas_logo.png shadow.png
imgdir = $(pkgdatadir)/data/images
img_DATA = $(IMAGES)
EXTRA_DIST = $(IMAGES)

View File

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

View File

@ -0,0 +1,6 @@
POINTERS = mouse_pointer.png
pntrdir = $(pkgdatadir)/data/pointers
pntr_DATA = $(POINTERS)
EXTRA_DIST = $(POINTERS)