Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
954557e9
Commit
954557e9
authored
Nov 19, 2011
by
Mike Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add main Makefile via patch: 001_add-main-makefile.patch.
parent
4076b413
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
47 additions
and
3 deletions
+47
-3
changelog
debian/changelog
+1
-0
001_add-main-makefile.patch
debian/patches/001_add-main-makefile.patch
+36
-0
series
debian/patches/series
+1
-0
rules
debian/rules
+9
-3
No files found.
debian/changelog
View file @
954557e9
...
@@ -3,5 +3,6 @@ nx-libs (2:3.5.0-0~x2go1) UNRELEASED; urgency=low
...
@@ -3,5 +3,6 @@ nx-libs (2:3.5.0-0~x2go1) UNRELEASED; urgency=low
* Initial release.
* Initial release.
* Use NX adapted LD_LIBRARY_PATH in debian/rules.
* Use NX adapted LD_LIBRARY_PATH in debian/rules.
* Add quilt as build dependency.
* Add quilt as build dependency.
* Add main Makefile via patch: 001_add-main-makefile.patch.
-- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Fri, 14 Oct 2011 03:01:39 +0200
-- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Fri, 14 Oct 2011 03:01:39 +0200
debian/patches/001_add-main-makefile.patch
0 → 100644
View file @
954557e9
Add main Makefile to build all NX subprojects in this source tree.--- /dev/null
+++ b/Makefile
@@ -0,0 +1,33 @@
+#!/usr/bin/make -f
+
+all: build
+
+build: build-arch build-indep
+
+clean:
+ cd nx-X11 && test -f Makefile && make $@ || true
+ cd nxcomp && test -f Makefile && make $@ || true
+ cd nxcompext && test -f Makefile && make $@ || true
+ cd nxcompshad && test -f Makefile && make $@ || true
+ cd nxproxy && test -f Makefile && make $@ || true
+
+
+distclean:
+ cd nx-X11 && test -f Makefile && make clean || true
+ cd nxcomp && test -f Makefile && make $@ || true
+ cd nxcompext && test -f Makefile && make $@ || true
+ cd nxcompshad && test -f Makefile && make $@ || true
+ cd nxproxy && test -f Makefile && make $@ || true
+
+build-arch:
+ cd nxcomp && autoconf
+ cd nxcompext && autoconf
+ cd nxcompshad && autoconf
+ cd nx-X11 && make World
+ cd nxproxy && autoconf
+
+build-indep:
+
+install:
+
+uninstall:
debian/patches/series
0 → 100644
View file @
954557e9
001_add-main-makefile.patch
debian/rules
View file @
954557e9
...
@@ -9,16 +9,22 @@ else
...
@@ -9,16 +9,22 @@ else
endif
endif
%:
%:
LD_LIBRARY_PATH=`pwd`/debian/libnx-x11/usr/lib/nx/X11:$$LD_LIBRARY_PATH dh $@
LD_LIBRARY_PATH=`pwd`/debian/libnx-x11/usr/lib/nx/X11:$$LD_LIBRARY_PATH dh $@
--with quilt
override_dh_auto_clean:
override_dh_auto_clean:
rm -Rf nx-X11/.build-exports
rm -Rf nx-X11/.build-exports
LD_LIBRARY_PATH=`pwd`/debian/libnx-x11/usr/lib/nx/X11:$$LD_LIBRARY_PATH dh_auto_clean
LD_LIBRARY_PATH=`pwd`/debian/libnx-x11/usr/lib/nx/X11:$$LD_LIBRARY_PATH dh_auto_clean
--with quilt
override_dh_auto_build:
override_dh_auto_build:
debian/pre-build-nx.sh
debian/pre-build-nx.sh
LD_LIBRARY_PATH=`pwd`/debian/libnx-x11/usr/lib/nx/X11:$$LD_LIBRARY_PATH dh_auto_build
LD_LIBRARY_PATH=`pwd`/debian/libnx-x11/usr/lib/nx/X11:$$LD_LIBRARY_PATH dh_auto_build
--with quilt
debian/post-build-nx.sh
debian/post-build-nx.sh
override_dh_auto_install:
override_dh_auto_install:
override_dh_quilt_patch:
dh_quilt_patch
chown a+x Makefile
override_dh_quilt_unpatch:
dh_quilt_unpatch
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment