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

CWD := $(shell pwd)

INSTALL_PREFIX = $(CWD)/build
SRC_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) \
				SRC_ROOT_DIR=$(SRC_ROOT_DIR) \
				INSTALL_PREFIX=$(INSTALL_PREFIX) \
				UNAME=$(UNAME)


install: extended_install


#==============================================================================#
#
## CVS SOURCES
#
#==============================================================================#

PD_ISS_NAME = pd-inno.iss
$(PD_ISS_NAME): $(PD_ISS_NAME).in
	@echo "Making Inno Setup file: $(PD_ISS_NAME)"
	cat "$(PD_ISS_NAME).in" | \
		sed 's/PACKAGE_NAME/$(PACKAGE_NAME)/g' | \
		sed 's/PD_VERSION/$(PD_VERSION)-$(PACKAGE_VERSION)/g' > \
		$(PD_ISS_NAME)
	-./generate_inno_files.sh >> $(PD_ISS_NAME)
#	start $(PD_ISS_NAME)

#==============================================================================#
#
## CVS SOURCES
#
#==============================================================================#

extended_install:
	cd $(PACKAGES_SRC) && make $(DEST_PATHS) install