blob: 7f79277d7dda75eb2ef0aa56a5db4c223d6e2007 (
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
|
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,34 @@
+#!/usr/bin/make -f
+
+%:
+ $(MAKE) -C nxcomp $@
+ $(MAKE) -C nxproxy $@
+ if test -d nx-X11; then \
+ $(MAKE) -C nxcompext $@; \
+ $(MAKE) -C nxcompshad; \
+ $(MAKE) -C nx-X11 $@; \
+ fi
+
+all: build
+
+test:
+ echo "No testing for NX (redistributed)"
+
+build-lite:
+ cd nxcomp && autoconf && ./configure && $(MAKE)
+ cd nxproxy && autoconf && ./configure && $(MAKE)
+
+build-full:
+# in the full case, we rely on "magic" in the nx-X11 imake-based makefiles...
+ cd nxcomp && autoconf && ./configure
+ cd nxcompext && autoconf
+ cd nxcompshad && autoconf
+ cd nx-X11 && $(MAKE) World
+ cd nxproxy && autoconf && (${CONFIGURE}) && $(MAKE)
+
+build:
+ if ! test -d nx-X11; then \
+ $(MAKE) build-lite; \
+ else \
+ $(MAKE) build-full; \
+ fi
|