blob: 4b7db6385cb993acda13fdb7ce8e81be74ab05d6 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#==============================================================================#
#
# Centralized cross-platform build system
#
# see README for instructions <hans@at.or.at>
#
#==============================================================================#
CWD := $(shell pwd)
SRC_ROOT_DIR = $(CWD)/..
INSTALL_PREFIX = $(SRC_ROOT_DIR)/packages/build
BUILDLAYOUT_DIR = $(CWD)
# get the platform
UNAME := $(shell uname)
# default target
all: abstractions doc externals gem pd
echo "Complete build succeeded!"
include $(BUILDLAYOUT_DIR)/Makefile.buildlayout
# these are sent to all of the various Makefiles so that they all copy their
# output to the same directory tree
DEST_PATHS = BUILDLAYOUT_DIR=$(BUILDLAYOUT_DIR) \
SRC_ROOT_DIR=$(SRC_ROOT_DIR) \
INSTALL_PREFIX=$(INSTALL_PREFIX)
# APPLICATIONS_DEST=$(APPLICATIONS_DEST) \
# DOCS_DEST=$(DOCS_DEST) \
# HELP_DEST=$(HELP_DEST) \
# MANUALS_DEST=$(MANUALS_DEST) \
# OBJECTS_DEST=$(OBJECTS_DEST)
#==============================================================================#
#
# BUILD TARGETS
#
#==============================================================================#
#------------------------------------------------------------------------------
# abstractions
abstractions:
make -f $(ABSTRACTIONS_SRC)/Makefile $(DEST_PATHS) install
#------------------------------------------------------------------------------
# doc
doc:
#------------------------------------------------------------------------------
# externals
externals:
# doc
make -f $(EXTERNALS_SRC)/build/doc/makefile $(DEST_PATHS) install
#------------------------------------------------------------------------------
# Gem
gem:
#------------------------------------------------------------------------------
# pd
pd:
#==============================================================================#
# CLEAN TARGETS
#==============================================================================#
abstractions_clean:
make -f $(ABSTRACTIONS_SRC)/Makefile $(DEST_PATHS) clean
clean: abstractions_clean
-rm -f *~
rm -rf $(MANUALS_DEST) $(HELP_DEST)
rmdir $(DOCS_DEST) $(INSTALL_PREFIX)
|