Factor common Makefile definitions into a `vars.am' file.
[sod] / lib / Makefile.am
index 6b21e4b..0e4c4fc 100644 (file)
 ### 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 --------------------------------------------------