Overview
Comment: | Keep compiled installer. |
---|---|
Timelines: | family | ancestors | descendants | both | mcg-20150427 |
Files: | files | file ages | folders |
SHA1: |
fce1cfe92ee98d7b30a64cf3b4412d16 |
User & Date: | IEUser on 2015-04-30 14:20:27 |
Other Links: | branch diff | manifest | tags |
Context
2015-04-30
| ||
14:42 | Added installer to repo per Matt W's request. check-in: 4649ae504d user: IEUser tags: mcg-20150427 | |
14:20 | Keep compiled installer. check-in: fce1cfe92e user: IEUser tags: mcg-20150427 | |
2015-04-29
| ||
23:44 | Implemented most requested changes for version 0.4. check-in: 2318a30a94 user: mgushee tags: mcg-20150427 | |
Changes
Modified Makefile from [545a1552f8] to [c45123fd08].
︙ | ︙ | |||
45 46 47 48 49 50 51 | wget http://www.haible.de/bruno/gnu/$(FFCALL_PKG) tar zxvf $(FFCALL_PKG) endef FFCALL_VERSION ?= cvs FFCALL_PREFIX ?= $(PREFIX) ifeq ($(FFCALL_VERSION), cvs) | | | | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | wget http://www.haible.de/bruno/gnu/$(FFCALL_PKG) tar zxvf $(FFCALL_PKG) endef FFCALL_VERSION ?= cvs FFCALL_PREFIX ?= $(PREFIX) ifeq ($(FFCALL_VERSION), cvs) FFCALL_DIR = ffcall FFCALL_PKG = GET_FFCALL = $(GET_FFCALL_CVS) else FFCALL_DIR = ffcall-$(FFCALL_VERSION) FFCALL_PKG = ffcall-$(FFCALL_VERSION).tar.gz GET_FFCALL = $(GET_FFCALL_PKG) endif IUP_URL = http://sourceforge.net/projects IUP_PLATFORM ?= Win32_dllw4 |
︙ | ︙ | |||
194 195 196 197 198 199 200 | $(MAKE) PLATFORM=$(CHICKEN_PLATFORM) clean ffcall.clean : cd $(FFCALL_DIR) && \ $(MAKE) clean distclean : | | > > | 194 195 196 197 198 199 200 201 202 203 204 | $(MAKE) PLATFORM=$(CHICKEN_PLATFORM) clean ffcall.clean : cd $(FFCALL_DIR) && \ $(MAKE) clean distclean : # rm -rf $(SRC_PKGS) $(BIN_PKGS) $(SRC_DIRS) binpkg Output chicken-iup.iss # Matt W requested installer in repo, so Output is omitted rm -rf $(SRC_PKGS) $(BIN_PKGS) $(SRC_DIRS) binpkg chicken-iup.iss |