From: daleharvey Date: Fri, 23 Jun 2006 13:21:14 +0000 (+0000) Subject: added make files for pedro X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d9cc963835d555564b5d0dfd6fa17ca900bedee9;p=inkscape.git added make files for pedro --- 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)