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
f4ef2967
Commit
f4ef2967
authored
Feb 07, 2012
by
Mike Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use ,,make -C'' in main Makefile for calling Makefiles in subdirectories.
parent
a751baaa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
28 deletions
+27
-28
changelog
debian/changelog
+1
-1
001_add-main-makefile.full+lite.patch
debian/patches/001_add-main-makefile.full+lite.patch
+26
-27
No files found.
debian/changelog
View file @
f4ef2967
nx-libs (2:3.5.0.11-0) UNRELEASED; urgency=low
*
Continue development..
.
*
Use ,,make -C'' in main Makefile for calling Makefiles in subdirectories
.
-- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Tue, 07 Feb 2012 13:48:19 +0100
...
...
debian/patches/001_add-main-makefile.full+lite.patch
View file @
f4ef2967
...
...
@@ -5,7 +5,7 @@ Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Last-Update: 2011-12-31
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,4
3
@@
@@ -0,0 +1,4
2
@@
+#!/usr/bin/make -f
+
+all: build
...
...
@@ -13,39 +13,38 @@ Last-Update: 2011-12-31
+build: build-arch build-indep
+
+clean:
+ test -d nx-X11 && cd nx-X11 && test -f Makefile && make $@ || true
+ test -d nxcomp && cd nxcomp && test -f Makefile && make $@ || true
+ test -d nxcompext && cd nxcompext && test -f Makefile && make $@ || true
+ test -d nxcompshad && cd nxcompshad && test -f Makefile && make $@ || true
+ test -d nxproxy && cd nxproxy && test -f Makefile && make $@ || true
+
+ -make -C nx-X11 $@
+ -make -C nxcomp $@
+ -make -C nxcompext $@
+ -make -C nxcompshad $@
+ -make -C nxproxy $@
+
+distclean:
+
test -d nx-X11 && cd nx-X11 && test -f Makefile && make $@ || true
+
test -d nxcomp && cd nxcomp && test -f Makefile && make $@ || true
+
test -d nxcompext && cd nxcompext && test -f Makefile && make $@ || true
+
test -d nxcompshad && cd nxcompshad && test -f Makefile && make $@ || true
+
test -d nxproxy && cd nxproxy && test -f Makefile && make $@ || true
+
-make -C nx-X11 $@
+
-make -C nxcomp $@
+
-make -C nxcompext $@
+
-make -C nxcompshad $@
+
-make -C nxproxy $@
+
+build-arch:
+
test -d nxcomp && cd nxcomp && autoconf
+
test -d nxcompext && cd nxcompext && autoconf
+
test -d nxcompshad && cd nxcompshad && autoconf
+
test -d nx-X11 && cd nx-X11 && make World
+
test -d nxproxy &&
cd nxproxy && autoconf && ./configure && make
+
cd nxcomp && autoconf && ./configure && make
+
-cd nxcompext && autoconf && ./configure && make
+
-cd nxcompshad && autoconf && ./configure && make
+
-cd nx-X11 && make World && ./configure && make
+ cd nxproxy && autoconf && ./configure && make
+
+build-indep:
+
+install:
+
test -d nxcomp && cd nxcomp && make install
+
test -d nxcompext && cd nxcompext && make install
+
test -d nxcompshad && cd nxcompshad && make install
+
test -d nx-X11 && cd nx-X11 && make install
+
test -d nxproxy && cd nxproxy && make install
+
-make -C nx-X11 $@
+
-make -C nxcomp $@
+
-make -C nxcompext $@
+
-make -C nxcompshad $@
+
-make -C nxproxy $@
+
+uninstall:
+
test -d nxcomp && cd nxcomp && make uninstall
+
test -d nxcompext && cd nxcompext && make uninstall
+
test -d nxcompshad && cd nxcompshad && make uninstall
+
test -d nx-X11 && cd nx-X11 && make uninstall
+
test -d nxproxy && cd nxproxy && make uninstall
+
-make -C nx-X11 $@
+
-make -C nxcomp $@
+
-make -C nxcompext $@
+
-make -C nxcompshad $@
+
-make -C nxproxy $@
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