Update of /cvsroot/pure-data/packages/win32_inno In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13644/win32_inno
Added Files: Makefile Log Message: oops forgot this one, its just a sketch, but its a start. pd-inno.iss compilation works for the most part
--- NEW FILE: Makefile --- # # 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