]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/include/common.makefile
ld64-47.2.tar.gz
[apple/ld64.git] / unit-tests / include / common.makefile
CommitLineData
d696c285
A
1# stuff to include in every test Makefile
2
3SHELL = /bin/sh
4
5# set default to be host
6ARCH ?= $(shell arch)
7
8# set default to be all
9VALID_ARCHS ?= "ppc ppc64 i386"
10
11# if run within Xcode, add the just built tools to the command path
12ifdef BUILT_PRODUCTS_DIR
13 PATH := ${BUILT_PRODUCTS_DIR}:${PATH}
14endif
15
16LD = ld
17OBJECTDUMP = ObjectDump
18MACHOCHECK = machocheck
19
20OTOOL = otool
21ifeq (${ARCH},ppc64)
22OTOOL = otool64
23endif
24
25
26CC = gcc-4.0 -arch ${ARCH}
27CCFLAGS = -Wall -g -std=c99
28ASMFLAGS =
29
30CXX = g++-4.0 -arch ${ARCH}
31CXXFLAGS = -Wall -g
32
33RM = rm
34RMFLAGS = -rf
35
36# utilites for Makefiles
37PASS_IFF = ${TESTROOT}/bin/pass-iff-exit-zero.pl
38PASS_IFF_EMPTY = ${TESTROOT}/bin/pass-iff-no-stdin.pl
39PASS_IFF_STDIN = ${TESTROOT}/bin/pass-iff-stdin.pl
40PASS_IFF_GOOD_MACHO = ${TESTROOT}/bin/pass-iff-exit-zero.pl ${MACHOCHECK}
41FAIL_IFF = ${TESTROOT}/bin/fail-iff-exit-zero.pl
42FAIL_IF_BAD_MACHO = ${TESTROOT}/bin/fail-if-exit-non-zero.pl ${MACHOCHECK}
43FAIL_IF_SUCCESS = ${TESTROOT}/bin/fail-if-exit-zero.pl
44FAIL_IF_EMPTY = ${TESTROOT}/bin/fail-if-no-stdin.pl
45FAIL_IF_STDIN = ${TESTROOT}/bin/fail-if-stdin.pl