Commit a2d77744 authored by Mike Gabriel's avatar Mike Gabriel

Add install/uninstall stanza to main Makefile (via patch 001_add-main-makefile.patch).

parent f4fac453
......@@ -27,5 +27,7 @@ nx-libs (2:3.5.0-0~x2go1) UNRELEASED; urgency=low
* Add patches: 012, 013, 014 - Makefile uninstall stanza patches for
nxcomp, nxcompext, nxcompshad.
* Add patch: 015_nxproxy-makefile-uninstall.patch.
* Add install/uninstall stanza to main Makefile (via patch
001_add-main-makefile.patch).
-- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Fri, 14 Oct 2011 03:01:39 +0200
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,33 @@
@@ -0,0 +1,43 @@
+#!/usr/bin/make -f
+
+all: build
......@@ -32,5 +32,15 @@
+build-indep:
+
+install:
+ cd nxcomp && make install
+ cd nxcompext && make install
+ cd nxcompshad && make install
+ cd nx-X11 && make install
+ cd nxproxy && make install
+
+uninstall:
+ cd nxcomp && make uninstall
+ cd nxcompext && make uninstall
+ cd nxcompshad && make uninstall
+ cd nx-X11 && make uninstall
+ 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