Skip to content
Snippets Groups Projects
Commit 9879fe4a authored by Christian Engwer's avatar Christian Engwer
Browse files

fix fs#362

remove am/update-libs


[[Imported from SVN: r5241]]
parent 517feee8
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,3 @@ include $(top_srcdir)/am/sourcescheck
# add "check-log"-target to create automated build logs
include $(top_srcdir)/am/checklog
# automaticly update libs
include $(top_srcdir)/am/update-libs
# -*- Makefile -*-
# $Id$
#
# -- update libs in an other directory --
#
# applications linking against local libraries should also depend on these libs
#
# app_SOURCE = app.cc
# app_LDADD = $(LOCAL_LIBS)
# app_DEPENDENCIES = $(LOCAL_LIBS)
#
# instead, you can also write
#
# app_SOURCE = app.cc
# app_LIBADD = $(LOCAL_LIBS)
#
LOCAL_LIBS = @LOCAL_LIBS@
%.la: MAKELIBS.force
cd $$(dirname $@) && $(MAKE) $$(basename $@)
MAKELIBS.force:
.PHONY: MAKELIBS.force
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment