Code

minor: Add bind/makefile.in
authorpjrm <pjrm@users.sourceforge.net>
Mon, 10 Mar 2008 09:45:47 +0000 (09:45 +0000)
committerpjrm <pjrm@users.sourceforge.net>
Mon, 10 Mar 2008 09:45:47 +0000 (09:45 +0000)
configure.ac
src/Makefile.am
src/bind/makefile.in [new file with mode: 0644]

index 2ea6ca30515a8d2e7d30c3a8bf626960a9680c3a..fd924a8aacce158471ab16d366c0410f14c29d0f 100644 (file)
@@ -867,6 +867,7 @@ src/Makefile
 src/check-header-compile
 src/algorithms/makefile
 src/application/makefile
+src/bind/makefile
 src/debug/makefile
 src/dialogs/makefile
 src/display/makefile
index 5aa62501450042a9954b46a6d7e29e71f8721003..7c820933f20159495546554fa92d5459bf50e038 100644 (file)
@@ -131,6 +131,7 @@ EXTRA_DIST =        \
        sp-skeleton.cpp sp-skeleton.h   \
        algorithms/makefile.in  \
        application/makefile.in \
+       bind/makefile.in        \
        debug/makefile.in       \
        dialogs/makefile.in     \
        dialogs/filedialog-win32.cpp    \
diff --git a/src/bind/makefile.in b/src/bind/makefile.in
new file mode 100644 (file)
index 0000000..90ed85b
--- /dev/null
@@ -0,0 +1,17 @@
+# Convenience stub makefile to call the real Makefile.
+
+@SET_MAKE@
+
+OBJEXT = @OBJEXT@
+
+# Explicit so that it's the default rule.
+all:
+       cd .. && $(MAKE) bind/all
+
+clean %.a %.$(OBJEXT):
+       cd .. && $(MAKE) bind/$@
+
+.PHONY: all clean
+
+.SUFFIXES:
+.SUFFIXES: .a .$(OBJEXT)