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

$(LIBDUNE) is now called $(LOCAL_LIBS)

[[Imported from SVN: r4519]]
parent 3c16e62f
No related branches found
No related tags found
No related merge requests found
......@@ -3,19 +3,19 @@
#
# -- update libs in an other directory --
#
# applications linking against libdune should also depend on libdune
# applications linking against local libraries should also depend on these libs
#
# app_SOURCE = app.cc
# app_LDADD = $(LIBDUNE)
# app_DEPENDENCIES = $(LIBDUNE)
# app_LDADD = $(LOCAL_LIBS)
# app_DEPENDENCIES = $(LOCAL_LIBS)
#
# instead, you can also write
#
# app_SOURCE = app.cc
# app_LIBADD = $(LIBDUNE)
# app_LIBADD = $(LOCAL_LIBS)
#
LIBDUNE = @LIBDUNE@
LOCAL_LIBS = @LOCAL_LIBS@
%.la: MAKELIBS.force
make -C $$(dirname $@) $$(basename $@)
......
......@@ -16,7 +16,7 @@ check_PROGRAMS = $(TESTPROGS)
bigunsignedinttest_SOURCES=bigunsignedinttest.cc
bigunsignedinttest_DEPENDENCIES = $(LIBDUNE)
bigunsignedinttest_DEPENDENCIES = $(LOCAL_LIBS)
parsetest_SOURCES = parsetest.cc
parsetest_DEPENDENCIES = $(LOCAL_LIBS)
......
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