Code

added make files for pedro
authordaleharvey <daleharvey@users.sourceforge.net>
Fri, 23 Jun 2006 13:21:14 +0000 (13:21 +0000)
committerdaleharvey <daleharvey@users.sourceforge.net>
Fri, 23 Jun 2006 13:21:14 +0000 (13:21 +0000)
src/pedro/Makefile_insert [new file with mode: 0644]
src/pedro/makefile [new file with mode: 0644]
src/pedro/makefile.in [new file with mode: 0644]

diff --git a/src/pedro/Makefile_insert b/src/pedro/Makefile_insert
new file mode 100644 (file)
index 0000000..b2e15db
--- /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
new file mode 100644 (file)
index 0000000..33c1547
--- /dev/null
@@ -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
new file mode 100644 (file)
index 0000000..b630253
--- /dev/null
@@ -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)