blob: d2736187cee79798c870c952459bf585ed4fb40b (
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
78
79
80
81
82
83
84
85
86
|
#
# This is a grand unifying Makefile for compiling Pd-extended under MinGW
#
all: install
CWD := $(shell pwd)
DESTDIR = $(CWD)/build
cvs_root_dir = $(CWD)/../..
BUILDLAYOUT_DIR = $(CWD)/..
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) \
cvs_root_dir=$(cvs_root_dir) \
DESTDIR=$(DESTDIR) \
prefix=$(prefix) \
UNAME=$(UNAME)
PD_INNO_SETUP = pd-inno.iss
package: $(PD_INNO_SETUP)
start $(PD_INNO_SETUP)
@echo " "
@echo "win32_inno install succeeded!"
install:
cd $(packages_src) && make $(DEST_PATHS) extended_install
cd .. && make $(DEST_PATHS) doc_format
install -p pd-settings.reg $(DESTDIR)$(prefix)
@echo " "
@echo "win32_inno install succeeded!"
#==============================================================================#
#
## CVS SOURCES
#
#==============================================================================#
# since I can't get Pd to compile, here are some hacks to assemble a package
# from binaries
no_compile_hacks:
cp -a /c/Program\ Files/pd-0.38-4 $(DESTDIR)$(prefix)/
$(PD_INNO_SETUP): $(PD_INNO_SETUP).in
@echo "Making Inno Setup file: $(PD_INNO_SETUP)"
cat "$(PD_INNO_SETUP).in" | \
sed 's/PACKAGE_NAME/$(PACKAGE_NAME)/g' | \
sed 's/PD_VERSION/$(PD_VERSION)/g' | \
sed 's/PACKAGE_VERSION/$(PACKAGE_VERSION)/g' > \
$(PD_INNO_SETUP)
# start $(PD_INNO_SETUP)
#==============================================================================#
#
## CVS SOURCES
#
#==============================================================================#
clean:
rm $(PD_INNO_SETUP)
cd $(packages_src) && make $(DEST_PATHS) clean
test_locations:
@echo "PD_VERSION: $(PD_VERSION)"
@echo "PACKAGE_VERSION: $(PACKAGE_VERSION)"
@echo "CWD $(CWD)"
@echo "DESTDIR $(DESTDIR)"
@echo "PREFIX $(prefix)"
@echo "BINDIR $(bindir)"
@echo "LIBDIR $(libdir)"
@echo "OBJECTSDIR $(objectsdir)"
@echo "PDDOCDIR $(pddocdir)"
@echo "LIBPDDIR $(libpddir)"
@echo "LIBPDBINDIR $(libpdbindir)"
@echo "HELPDIR $(helpdir)"
@echo "MANUALSDIR $(manualsdir)"
@echo "EXAMPLESDIR $(examplesdir)"
|