diff options
| author | daleharvey <daleharvey@users.sourceforge.net> | 2006-06-23 13:21:14 +0000 |
|---|---|---|
| committer | daleharvey <daleharvey@users.sourceforge.net> | 2006-06-23 13:21:14 +0000 |
| commit | f269b8931cbb5b10cff712c4f65b846c23910376 (patch) | |
| tree | 957e36438db69d4edc4ee6f46cb774d88a140354 /src | |
| parent | added an empty.cpp to pedro, required for build (diff) | |
| download | inkscape-f269b8931cbb5b10cff712c4f65b846c23910376.tar.gz inkscape-f269b8931cbb5b10cff712c4f65b846c23910376.zip | |
added make files for pedro
(bzr r1270)
Diffstat (limited to 'src')
| -rw-r--r-- | src/pedro/Makefile_insert | 28 | ||||
| -rw-r--r-- | src/pedro/makefile | 17 | ||||
| -rw-r--r-- | src/pedro/makefile.in | 17 |
3 files changed, 62 insertions, 0 deletions
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) |
