I am trying to write a Makefile.am to link many static libraries into one single library (no extra source code is needed, I just want a library merge). Here is my Makefile.am file:
#target lib xxxx linking yyyy and zzzz libs (no source at this level):
noinst_LTLIBRARIES = lib_xxxx.la
lib_xxxx_la_SOURCES =
#member libs:
SUBDIRS = yyyy
lib_xxxx_la_LIBADD = yyyy/yyyy.la
SUBDIRS += zzzz
lib_zzzz_la_LIBADD = zzzz/zzzz.la
I get 'No rule to make target 'all'. Even if I suppress the line:
lib_xxxx_la_SOURCES =
How to I tel automake to do that?