quick hack to fix guile build

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1131 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-09-09 06:51:31 +00:00
parent 972657eb4d
commit d13d3797b2

View File

@ -44,7 +44,13 @@ all: default
# definitions of *_SRCS, etc., but before the usage of *_OBJS.
include ../../Makefile.common
default: ${OBJS}
default: ../libengine.a
../libengine.a: ${OBJS}
ar vru libengine.a ${OBJS}
cp -p libengine.a ..
.PHONY: all default