aboutsummaryrefslogtreecommitdiff
path: root/packages/win32_inno/Makefile
blob: 192aa52d730c1911d8c4291e8b57ed094b49ca93 (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
#
# This is a grand unifying Makefile for compiling Pd-extended under MinGW
#
all: install

CWD := $(shell pwd)

prefix = $(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) \
				prefix=$(prefix) \
				UNAME=$(UNAME)

PD_INNO_SETUP = pd-inno.iss


install: $(PD_INNO_SETUP)
	cd $(packages_src) && make $(DEST_PATHS) extended_install
	cd .. && make $(DEST_PATHS) doc_format
	install -p pd-settings.reg $(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 $(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