1 # Makefile for striptease project
2 # Copyright (C) 2011 Kyle J. McKay. All rights reserved.
4 # Permission is hereby granted, free of charge, to any person obtaining a copy
5 # of this software and associated documentation files (the "Software"), to
6 # deal in the Software without restriction, including without limitation the
7 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8 # sell copies of the Software, and to permit persons to whom the Software is
9 # furnished to do so, subject to the following conditions:
11 # The above copyright notice and this permission notice shall be included in
12 # all copies or substantial portions of the Software.
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 # Except as contained in this notice, the name of the author(s) shall not
22 # be used in advertising or otherwise to promote the sale, use or other
23 # dealings in this Software without prior written authorization from the
36 XSDK
:= $(shell xcode-select
-print-path
2>/dev
/null
)/SDKs
38 XSDK
:= /Developer
/SDKs
41 OSXNUVER
:= $(shell uname
-r | cut
-d.
-f1
)
44 $(shell mkdir
-p build
/Release
/libstuff
)
48 $(shell mkdir
-p build
/Debug
/libstuff
)
54 COPTS
+= -mmacosx-version-min
=10.4
56 COPTS
+= -isysroot
$(XSDK
)/MacOSX10.4u.sdk
58 COPTS
+= -isysroot
$(XSDK
)/MacOSX10.5.sdk
60 COPTS
+= -include preinc.h
64 COPTS
+= -arch i386
-arch ppc
67 LDOPTS
+= -mmacosx-version-min
=10.4
69 LDOPTS
+= -Xarch_x86_64
-mmacosx-version-min
=10.5
71 # The 10.4u SDK can be used, but do not require it except on 10.4.x
73 LDOPTS
+= -isysroot
$(XSDK
)/MacOSX10.4u.sdk
75 LDOPTS
+= -isysroot
$(XSDK
)/MacOSX10.5.sdk
78 LDOPTS
+= -arch x86_64
80 LDOPTS
+= -arch i386
-arch ppc
91 LIBSTUFF_SRC
:= $(wildcard libstuff
/*.c
)
103 TEASE_OBJS
= $(addprefix $(DD
),$(TEASE_SRC
:.c
=.o
))
105 STRIP_OBJS
= $(addprefix $(DD
),$(STRIP_SRC
:.c
=.o
))
108 $(CC
) -Wall
-c
$(COPTS
) $(CINC
) -o
$@
$<
110 $(DD
)tease
: $(TEASE_OBJS
)
111 $(CC
) -o
$@
$(LDOPTS
) $^
116 $(DD
)strip : $(STRIP_OBJS
)
117 $(CC
) -o
$@
$(LDOPTS
) $^