X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/97a9a385a376202d0859ff8191858d13ec8901c2..b5d086c2894c492e17391b17f2600de83206a7b6:/lib/Makefile.am diff --git a/lib/Makefile.am b/lib/Makefile.am index 6b21e4b..0e4c4fc 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -23,36 +23,34 @@ ### along with SOD; if not, write to the Free Software Foundation, ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +include $(top_srcdir)/vars.am + +###-------------------------------------------------------------------------- +### The library. + lib_LTLIBRARIES = libsod.la libsod_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO) libsod_la_SOURCES = -include_HEADERS = nodist_libsod_la_SOURCES = -nodist_include_HEADERS = - -SOD = $(top_builddir)/src/sod - -BUILT_SOURCES = +nodist_pkginclude_HEADERS= ###-------------------------------------------------------------------------- ### The source files. libsod_la_SOURCES += sod.c -include_HEADERS += sod.h +pkginclude_HEADERS += sod.h ###-------------------------------------------------------------------------- ### Generated builtin module. -BUILT_SOURCES += sod-base.c sod-base.h nodist_libsod_la_SOURCES+= sod-base.c -nodist_include_HEADERS += sod-base.h - -sod-base.c: $(SOD) - $(SOD) -tc --builtin +nodist_pkginclude_HEADERS+= sod-base.h +BUILT_SOURCES += $(nodist_libsod_la_SOURCES) \ + $(nodist_pkginclude_HEADERS) -sod-base.h: $(SOD) - $(SOD) -th --builtin +sod-base.c: $(SOD); $(SOD) -tc --builtin +sod-base.h: $(SOD); $(SOD) -th --builtin ###----- That's all, folks --------------------------------------------------