summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2de314b)
raw | patch | inline | side by side (parent: 2de314b)
author | pjrm <pjrm@users.sourceforge.net> | |
Mon, 10 Mar 2008 09:45:47 +0000 (09:45 +0000) | ||
committer | pjrm <pjrm@users.sourceforge.net> | |
Mon, 10 Mar 2008 09:45:47 +0000 (09:45 +0000) |
configure.ac | patch | blob | history | |
src/Makefile.am | patch | blob | history | |
src/bind/makefile.in | [new file with mode: 0644] | patch | blob |
diff --git a/configure.ac b/configure.ac
index 2ea6ca30515a8d2e7d30c3a8bf626960a9680c3a..fd924a8aacce158471ab16d366c0410f14c29d0f 100644 (file)
--- a/configure.ac
+++ b/configure.ac
src/check-header-compile
src/algorithms/makefile
src/application/makefile
+src/bind/makefile
src/debug/makefile
src/dialogs/makefile
src/display/makefile
diff --git a/src/Makefile.am b/src/Makefile.am
index 5aa62501450042a9954b46a6d7e29e71f8721003..7c820933f20159495546554fa92d5459bf50e038 100644 (file)
--- a/src/Makefile.am
+++ b/src/Makefile.am
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
--- /dev/null
+++ b/src/bind/makefile.in
@@ -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)