Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/tcl8.5.2/macosx/Tcl-Common.xcconfig @ 25

Last change on this file since 25 was 25, checked in by landauf, 17 years ago

added tcl to libs

File size: 1.7 KB
Line 
1//
2// Tcl-Common.xcconfig --
3//
4//      This file contains the Xcode build settings comon to all
5//      project configurations in Tcl.xcodeproj.
6//
7// Copyright (c) 2007-2008 Daniel A. Steffen <das@users.sourceforge.net>
8//
9// See the file "license.terms" for information on usage and redistribution
10// of this file, and for a DISCLAIMER OF ALL WARRANTIES.
11//
12// RCS: @(#) $Id: Tcl-Common.xcconfig,v 1.10 2008/03/12 22:17:57 das Exp $
13//
14
15HEADER_SEARCH_PATHS = "$(DERIVED_FILE_DIR)/tcl" $(HEADER_SEARCH_PATHS)
16OTHER_LDFLAGS = -headerpad_max_install_names -sectcreate __TEXT __info_plist "$(DERIVED_FILE_DIR)/tcl/Tclsh-Info.plist" $(OTHER_LDFLAGS)
17INSTALL_PATH = $(BINDIR)
18INSTALL_MODE_FLAG = go-w,a+rX
19GCC_PREFIX_HEADER = $(DERIVED_FILE_DIR)/tcl/tclConfig.h
20GCC_GENERATE_DEBUGGING_SYMBOLS = YES
21GCC_NO_COMMON_BLOCKS = YES
22GCC_DYNAMIC_NO_PIC = YES
23GCC = $(DEVELOPER_DIR)/usr/bin/gcc
24GCC_VERSION = 4.0
25CC = $(GCC)-$(GCC_VERSION)
26LD = $(CC)
27WARNING_CFLAGS_GCC3 = -Wall -Wno-implicit-int -Wno-unused-parameter -Wno-deprecated-declarations
28WARNING_CFLAGS = -Wextra -Wno-missing-field-initializers -Winit-self -Wpointer-arith -Wcast-align -Wdisabled-optimization -Winline $(WARNING_CFLAGS_GCC3) $(WARNING_CFLAGS)
29BINDIR = $(PREFIX)/bin
30CFLAGS = $(CFLAGS)
31CPPFLAGS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_TARGET) $(CPPFLAGS)
32FRAMEWORK_INSTALL_PATH = /Library/Frameworks
33INCLUDEDIR = $(PREFIX)/include
34LIBDIR = $(PREFIX)/lib
35MANDIR = $(PREFIX)/man
36PER_ARCH_CFLAGS_ppc = -mcpu=G3 -mtune=G4 $(PER_ARCH_CFLAGS_ppc)
37PER_ARCH_CFLAGS_ppc64 = -mcpu=G5 -mpowerpc64 $(PER_ARCH_CFLAGS_ppc64)
38PREFIX = /usr/local
39TCL_CONFIGURE_ARGS = --enable-threads --enable-dtrace
40TCL_LIBRARY = $(LIBDIR)/tcl$(VERSION)
41TCL_PACKAGE_PATH = "$(LIBDIR)"
42TCL_DEFS = HAVE_TCL_CONFIG_H
43VERSION = 8.5
Note: See TracBrowser for help on using the repository browser.