Clean up things that are no longer used.

--HG--
extra : rebase_source : 544022e1eeeac8e22d03d0a59cd98ddb9c220a51
master
dak180 2010-10-13 17:09:51 -04:00
parent 5457aefde6
commit 20924b59a4
8 changed files with 1 additions and 152 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,7 +0,0 @@
// Bison settings for all configurations
INSTALL_PATH = $(HOME)/bin
PREBINDING = NO
PRODUCT_NAME = Bison
GCC_MODEL_TUNING = G5

View File

@ -1,10 +0,0 @@
// Bison settings for Debug configuration
#include "Bison-All.xcconfig"
COPY_PHASE_STRIP = NO
GCC_DYNAMIC_NO_PIC = NO
GCC_ENABLE_FIX_AND_CONTINUE = YES
GCC_GENERATE_DEBUGGING_SYMBOLS = YES
ZERO_LINK = YES

View File

@ -1,9 +0,0 @@
// Bison settings for Release configuration
#include "Bison-All.xcconfig"
COPY_PHASE_STRIP = YES
GCC_ENABLE_FIX_AND_CONTINUE = NO
GCC_GENERATE_DEBUGGING_SYMBOLS = NO
ZERO_LINK = NO

View File

@ -1,17 +0,0 @@
// Popt settings for all configurations
INSTALL_PATH = @executable_path/../Frameworks
DYLIB_COMPATIBILITY_VERSION = 1
DYLIB_CURRENT_VERSION = 1
OTHER_LDFLAGS = -framework Carbon
PREBINDING = NO
FRAMEWORK_VERSION = A
INFOPLIST_FILE = Resources/GenericFramework-Info.plist
PRODUCT_NAME = Popt
GCC_MODEL_TUNING = G5
GCC_PRECOMPILE_PREFIX_HEADER = YES
GCC_PREFIX_HEADER = "$(SDK_DIR)/System/Library/Frameworks/Carbon.framework/Headers/Carbon.h"
GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1) HAVE_UNISTD_H HAVE_STPCPY HAVE_STRERROR $(inherited)
GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1 = PACKAGE=\"popt\"

View File

@ -1,11 +0,0 @@
// Popt settings for Debug configuration
#include "Popt-All.xcconfig"
COPY_PHASE_STRIP = NO
GCC_ENABLE_FIX_AND_CONTINUE = YES
GCC_GENERATE_DEBUGGING_SYMBOLS = YES
GCC_DYNAMIC_NO_PIC = NO
GCC_OPTIMIZATION_LEVEL = 0
ZERO_LINK = YES

View File

@ -1,9 +0,0 @@
// Popt settings for Release configuration
#include "Popt-All.xcconfig"
COPY_PHASE_STRIP = YES
GCC_ENABLE_FIX_AND_CONTINUE = NO
GCC_GENERATE_DEBUGGING_SYMBOLS = NO
ZERO_LINK = NO

View File

@ -1,15 +0,0 @@
#!/bin/bash
# System Bison executable
SYS_BISON="bison"
# Local Warzone Bison executable (relative to macosx/)
LOCAL_BISON="external/bison/built/bin/bison"
# If a Warzone Bison executable exists, use instead of the system executable
if [ -e "$LOCAL_BISON" ]; then
${LOCAL_BISON} ${@}
exit ${?}
else
${SYS_BISON} ${@}
exit ${?}
fi