remove bogus SUBDIRS and dist-hook entries

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2458 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Allan Rae 2001-08-09 01:35:15 +00:00
parent cbf29c8fdc
commit ad6a378c33
2 changed files with 4 additions and 15 deletions

View File

@ -1,3 +1,7 @@
2001-08-09 Allan Rae <rae@lyx.org>
* Makefile.am (SUBDIRS, dist-hook): remove bogus entries.
2001-08-07 Angus Leeming <a.leeming@ic.ac.uk>
* helper_funcs.C (getVectorFromString): fixed small bug.

View File

@ -7,7 +7,6 @@ INCLUDES = -I${top_srcdir}/src/ \
-I${top_srcdir}/src/frontends/ \
${SIGC_CFLAGS} $(BOOST_INCLUDES)
LIBS =
SUBDIRS =
ETAGS_ARGS = --lang=c++
libcontrollers_la_SOURCES=\
biblio.C \
@ -81,17 +80,3 @@ libcontrollers_la_SOURCES=\
ViewBase.h \
helper_funcs.C \
helper_funcs.h
# just copied from old lyx repository
dist-hook:
for subdir in $(LYXDATADIRS) ; do \
test -d $(distdir)/$$subdir \
|| mkdir $(distdir)/$$subdir \
|| exit 1; \
chmod 777 $(distdir)/$$subdir; \
list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
echo $$list ; \
for fil in $$list ; do \
cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
done ; \
done