File: Makefile.macosx.in

package info (click to toggle)
tclxml 3.3~svn11-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,392 kB
  • sloc: ansic: 13,292; tcl: 11,656; xml: 3,269; sh: 559; makefile: 15
file content (21 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
########################
#
# Makefile to build TclXML/libxml2 for macosx.
#
# Usage:
#	cd tclxml-3.X
#	make -f Makefile.macosx
#
# $Id: Makefile.macosx,v 1.1 2005/05/20 12:04:19 balls Exp $
#
########################

PACKAGE_VERSION	:= @PACKAGE_VERSION@

LIBXML2_VERSION	:= $(shell eval echo $$(ls -dt ../libxml2* | head -1 | sed -e '1s/.*\-//'))

all:	build

build:
	cd macosx; xcodebuild -project tclxml.pbproj -target Make -buildstyle Deployment FRAMEWORK_VERSION=${PACKAGE_VERSION} LIBXML2_VERSION=${LIBXML2_VERSION}