Commit 8b013ce8 authored by Mike Gabriel's avatar Mike Gabriel

Update patch: 001_add-main-makefile.full+lite.patch, only build, install, clean…

Update patch: 001_add-main-makefile.full+lite.patch, only build, install, clean etc. NX subprojects if the folder exists.
parent e9241fe8
...@@ -2,6 +2,8 @@ nx-libs (2:3.5.0.8-0) UNRELEASED; urgency=low ...@@ -2,6 +2,8 @@ nx-libs (2:3.5.0.8-0) UNRELEASED; urgency=low
* Reorganize patch names, to reflect patch inclusion into lite+full or * Reorganize patch names, to reflect patch inclusion into lite+full or
full-only ,,NX (redistributed)'' tarball. full-only ,,NX (redistributed)'' tarball.
* Update patch: 001_add-main-makefile.full+lite.patch, only build, install,
clean etc. NX subprojects if the folder exists.
-- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Mon, 16 Jan 2012 22:28:13 +0100 -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Mon, 16 Jan 2012 22:28:13 +0100
......
...@@ -13,39 +13,39 @@ Last-Update: 2011-12-31 ...@@ -13,39 +13,39 @@ Last-Update: 2011-12-31
+build: build-arch build-indep +build: build-arch build-indep
+ +
+clean: +clean:
+ cd nx-X11 && test -f Makefile && make $@ || true + test -d nx-X11 && cd nx-X11 && test -f Makefile && make $@ || true
+ cd nxcomp && test -f Makefile && make $@ || true + test -d nxcomp && cd nxcomp && test -f Makefile && make $@ || true
+ cd nxcompext && test -f Makefile && make $@ || true + test -d nxcompext && cd nxcompext && test -f Makefile && make $@ || true
+ cd nxcompshad && test -f Makefile && make $@ || true + test -d nxcompshad && cd nxcompshad && test -f Makefile && make $@ || true
+ cd nxproxy && test -f Makefile && make $@ || true + test -d nxproxy && cd nxproxy && test -f Makefile && make $@ || true
+ +
+ +
+distclean: +distclean:
+ cd nx-X11 && test -f Makefile && make $@ || true + test -d nx-X11 && cd nx-X11 && test -f Makefile && make $@ || true
+ cd nxcomp && test -f Makefile && make $@ || true + test -d nxcomp && cd nxcomp && test -f Makefile && make $@ || true
+ cd nxcompext && test -f Makefile && make $@ || true + test -d nxcompext && cd nxcompext && test -f Makefile && make $@ || true
+ cd nxcompshad && test -f Makefile && make $@ || true + test -d nxcompshad && cd nxcompshad && test -f Makefile && make $@ || true
+ cd nxproxy && test -f Makefile && make $@ || true + test -d nxproxy && cd nxproxy && test -f Makefile && make $@ || true
+ +
+build-arch: +build-arch:
+ cd nxcomp && autoconf + test -d nxcomp && cd nxcomp && autoconf
+ cd nxcompext && autoconf + test -d nxcompext && cd nxcompext && autoconf
+ cd nxcompshad && autoconf + test -d nxcompshad && cd nxcompshad && autoconf
+ cd nx-X11 && make World + test -d nx-X11 && cd nx-X11 && make World
+ cd nxproxy && autoconf && ./configure && make + test -d nxproxy && cd nxproxy && autoconf && ./configure && make
+ +
+build-indep: +build-indep:
+ +
+install: +install:
+ cd nxcomp && make install + test -d nxcomp && cd nxcomp && make install
+ cd nxcompext && make install + test -d nxcompext && cd nxcompext && make install
+ cd nxcompshad && make install + test -d nxcompshad && cd nxcompshad && make install
+ cd nx-X11 && make install + test -d nx-X11 && cd nx-X11 && make install
+ cd nxproxy && make install + test -d nxproxy && cd nxproxy && make install
+ +
+uninstall: +uninstall:
+ cd nxcomp && make uninstall + test -d nxcomp && cd nxcomp && make uninstall
+ cd nxcompext && make uninstall + test -d nxcompext && cd nxcompext && make uninstall
+ cd nxcompshad && make uninstall + test -d nxcompshad && cd nxcompshad && make uninstall
+ cd nx-X11 && make uninstall + test -d nx-X11 && cd nx-X11 && make uninstall
+ cd nxproxy && make uninstall + test -d nxproxy && cd nxproxy && make uninstall
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment