shithub: choc

Download patch

ref: 869447ff69c4832dfe0a14c382f67d5dea867def
parent: d1b0870951eaba66da1e11716898b65cbc96302a
author: Simon Howard <fraggle@gmail.com>
date: Tue Jan 12 15:12:56 EST 2010

Move Makefile definitions for CC and STRIP into config.make, use
versions from autoconf.

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1808

--- a/pkg/config.make.in
+++ b/pkg/config.make.in
@@ -1,6 +1,15 @@
-# File included by package makefiles that contains details
-# about the package name, generated by configure.
+# Shared file included by the makefiles used to build packages.
+# This contains various information needed by the makefiles,
+# and is autogenerated by configure to include various
+# necessary details.
 
+# Tools needed:
+
+CC = @CC@
+STRIP = @STRIP@
+
+# Package name and version number:
+
 PACKAGE = @PACKAGE@
 PACKAGE_NAME = @PACKAGE_NAME@
 PACKAGE_STRING = @PACKAGE_STRING@
@@ -9,11 +18,11 @@
 
 # Documentation files to distribute with packages.
 
-DOC_FILES=README       \
-          COPYING      \
-          ChangeLog    \
-          NEWS         \
-          BUGS         \
-          CMDLINE      \
-          TODO
+DOC_FILES = README       \
+            COPYING      \
+            ChangeLog    \
+            NEWS         \
+            BUGS         \
+            CMDLINE      \
+            TODO
 
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -1,9 +1,6 @@
 
 include ../config.make
 
-CC=gcc
-STRIP=strip
-
 STAGING_DIR=staging
 DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg
 
@@ -32,10 +29,12 @@
 	cp -R app-skeleton "$(APP_DIR)"
 	mkdir "$(APP_BIN_DIR)"
 	cp Info.plist "$(APP_DIR)/Contents/"
+
 	cp launcher "$(APP_BIN_DIR)/"
+	$(STRIP) "$(APP_BIN_DIR)/launcher"
 
-	./cp-with-libs $(TOPLEVEL)/src/chocolate-doom "$(APP_BIN_DIR)"
-	$(STRIP) "$(APP_BIN_DIR)/chocolate-doom"
+	./cp-with-libs $(TOPLEVEL)/src/$(PACKAGE_TARNAME) "$(APP_BIN_DIR)"
+	$(STRIP) "$(APP_BIN_DIR)/$(PACKAGE_TARNAME)"
 	./cp-with-libs $(TOPLEVEL)/setup/chocolate-setup "$(APP_BIN_DIR)"
 	$(STRIP) "$(APP_BIN_DIR)/chocolate-setup"