blob: 2d35e822b82be0b0441cc8166c4c546acfff94c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
Description: Provide main Makefile for whole source tree
By design this patch is not needed to be sent upstream.
Forwarded: not-needed
Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Last-Update: 2011-12-31
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,42 @@
+#!/usr/bin/make -f
+
+all: build
+
+build: build-arch build-indep
+
+clean:
+ -make -C nx-X11 $@
+ -make -C nxcomp $@
+ -make -C nxcompext $@
+ -make -C nxcompshad $@
+ -make -C nxproxy $@
+
+distclean:
+ -make -C nx-X11 $@
+ -make -C nxcomp $@
+ -make -C nxcompext $@
+ -make -C nxcompshad $@
+ -make -C nxproxy $@
+
+build-arch:
+ 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:
+ -make -C nx-X11 $@
+ -make -C nxcomp $@
+ -make -C nxcompext $@
+ -make -C nxcompshad $@
+ -make -C nxproxy $@
+
+uninstall:
+ -make -C nx-X11 $@
+ -make -C nxcomp $@
+ -make -C nxcompext $@
+ -make -C nxcompshad $@
+ -make -C nxproxy $@
|