summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5e3bfdf)
raw | patch | inline | side by side (parent: 5e3bfdf)
author | daleharvey <daleharvey@users.sourceforge.net> | |
Fri, 23 Jun 2006 13:21:14 +0000 (13:21 +0000) | ||
committer | daleharvey <daleharvey@users.sourceforge.net> | |
Fri, 23 Jun 2006 13:21:14 +0000 (13:21 +0000) |
src/pedro/Makefile_insert | [new file with mode: 0644] | patch | blob |
src/pedro/makefile | [new file with mode: 0644] | patch | blob |
src/pedro/makefile.in | [new file with mode: 0644] | patch | blob |
diff --git a/src/pedro/Makefile_insert b/src/pedro/Makefile_insert
--- /dev/null
@@ -0,0 +1,28 @@
+## Makefile.am fragment sourced by src/Makefile.am.
+#
+# Pedro mini-XMPP client, used for Inkboard's Jabber functionality
+# Author: Bob Jamison
+
+pedro/all: pedro/libpedro.a
+pedro/clean:
+ rm -f pedro/libpedro.a $(pedro_libpedro_a_OBJECTS)
+
+pedro_SOURCES= \
+ pedro/pedroconfig.cpp \
+ pedro/pedroconfig.h \
+ pedro/pedrodom.cpp \
+ pedro/pedrodom.h \
+ pedro/pedrogui.cpp \
+ pedro/pedrogui.h \
+ pedro/pedroutil.cpp \
+ pedro/pedroutil.h \
+ pedro/pedroxmpp.cpp \
+ pedro/pedroxmpp.h
+
+if WITH_INKBOARD
+temp_pedro_files = $(pedro_SOURCES)
+endif
+
+pedro_libpedro_a_SOURCES = \
+ pedro/empty.cpp \
+ $(temp_pedro_files)
diff --git a/src/pedro/makefile b/src/pedro/makefile
--- /dev/null
+++ b/src/pedro/makefile
@@ -0,0 +1,17 @@
+# Convenience stub makefile to call the real Makefile.
+
+
+
+# Explicit so that it's the default rule.
+all:
+ cd .. && $(MAKE) pedro/all
+
+clean %.a %.o:
+ cd .. && $(MAKE) pedro/$@
+
+.PHONY: all clean
+
+OBJEXT = o
+
+.SUFFIXES:
+.SUFFIXES: .a .$(OBJEXT)
diff --git a/src/pedro/makefile.in b/src/pedro/makefile.in
--- /dev/null
+++ b/src/pedro/makefile.in
@@ -0,0 +1,17 @@
+# Convenience stub makefile to call the real Makefile.
+
+@SET_MAKE@
+
+# Explicit so that it's the default rule.
+all:
+ cd .. && $(MAKE) pedro/all
+
+clean %.a %.o:
+ cd .. && $(MAKE) pedro/$@
+
+.PHONY: all clean
+
+OBJEXT = @OBJEXT@
+
+.SUFFIXES:
+.SUFFIXES: .a .$(OBJEXT)