Introduce a proper build system and clear away old cruft.
[sod] / lib / Makefile.am
diff --git a/lib/Makefile.am b/lib/Makefile.am
new file mode 100644 (file)
index 0000000..6b21e4b
--- /dev/null
@@ -0,0 +1,58 @@
+### -*-makefile-*-
+###
+### Build script for SOD runtime library
+###
+### (c) 2015 Straylight/Edgeware
+###
+
+###----- Licensing notice ---------------------------------------------------
+###
+### This file is part of the Sensble Object Design, an object system for C.
+###
+### SOD is free software; you can redistribute it and/or modify
+### it under the terms of the GNU General Public License as published by
+### the Free Software Foundation; either version 2 of the License, or
+### (at your option) any later version.
+###
+### SOD is distributed in the hope that it will be useful,
+### but WITHOUT ANY WARRANTY; without even the implied warranty of
+### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+### GNU General Public License for more details.
+###
+### You should have received a copy of the GNU General Public License
+### along with SOD; if not, write to the Free Software Foundation,
+### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+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           =
+
+###--------------------------------------------------------------------------
+### The source files.
+
+libsod_la_SOURCES      += sod.c
+include_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
+
+sod-base.h: $(SOD)
+       $(SOD) -th --builtin
+
+###----- That's all, folks --------------------------------------------------