From d9cc963835d555564b5d0dfd6fa17ca900bedee9 Mon Sep 17 00:00:00 2001 From: daleharvey Date: Fri, 23 Jun 2006 13:21:14 +0000 Subject: [PATCH] added make files for pedro --- src/pedro/Makefile_insert | 28 ++++++++++++++++++++++++++++ src/pedro/makefile | 17 +++++++++++++++++ src/pedro/makefile.in | 17 +++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 src/pedro/Makefile_insert create mode 100644 src/pedro/makefile create mode 100644 src/pedro/makefile.in diff --git a/src/pedro/Makefile_insert b/src/pedro/Makefile_insert new file mode 100644 index 000000000..b2e15db93 --- /dev/null +++ b/src/pedro/Makefile_insert @@ -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 index 000000000..33c154785 --- /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 new file mode 100644 index 000000000..b63025326 --- /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) -- 2.30.2