Index: README =================================================================== --- README (revision 5697) +++ README (working copy) @@ -15,7 +15,7 @@ cd host/trunk/emdebian-tools/trunk svn-buildpackage -us -uc -rfakeroot To build empath: -cd host/trunk/emdebian-tools/trunk +cd host/trunk/empath/trunk ./autogen.sh ./configure --enable-error-on-warning make Index: Makefile.deb =================================================================== --- Makefile.deb (revision 0) +++ Makefile.deb (revision 0) @@ -0,0 +1,22 @@ +all: apt-cross emdebian-tools empath #langupdate +SVN_BUILDPACKAGE=svn-buildpackage --svn-ignore --svn-ignore-new +apt-cross: + cd host/trunk/apt-cross/trunk && $(SVN_BUILDPACKAGE) -us -uc -rfakeroot + +emdebian-tools: + cd host/trunk/emdebian-tools/trunk && $(SVN_BUILDPACKAGE) -us -uc -rfakeroot + +empath: + cd host/trunk/empath/trunk && \ + ./autogen.sh && \ + ./configure --enable-error-on-warning && \ + make && \ + $(SVN_BUILDPACKAGE) -uc -us -rfakeroot + +langupdate: + cd host/trunk/langupdate/trunk && \ + ./autogen.sh && \ + ./configure --enable-error-on-warning && \ + make && \ + $(SVN_BUILDPACKAGE) -uc -us -rfakeroot +