Specifically, we should be able to have libDtMail subdir build all of it's objects directly w/o intervening Makefile.am's and archive .a libs.
12 lines
246 B
Makefile
12 lines
246 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
SUBDIRS = Common RFC
|
|
|
|
noinst_LIBRARIES = libDtMail.a
|
|
|
|
libDtMail_a_SOURCES =
|
|
|
|
# Unfortunately, this does not work -
|
|
# libDtMail_a_LIBADD = Common/libCommon.a RFC/libRFC.a
|
|
libDtMail_a_LIBADD = Common/*.o RFC/*.o
|