forked from darlinghq/darling-cups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
170 lines (139 loc) · 6.01 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
##
# Makefile for cups
##
# Project info
Project = cups
UserType = Administrator
ToolType = Services
GnuNoChown = YES
GnuAfterInstall = install-plist
# It's a GNU Source project
include $(MAKEFILEPATH)/CoreOS/ReleaseControl/GNUSource.make
# Specify the configure flags to use...
ifeq ($(RC_MACOS),YES)
CUPS_Components=all
GSSAPI_Options=--enable-gssapi
else
CUPS_Components=libcupslite
GSSAPI_Options=--disable-gssapi
endif
Configure_Flags = `$(SRCROOT)/gettargetflags.sh host` \
--with-cups-build="cups-483.2" \
--with-adminkey="system.print.admin" \
--with-operkey="system.print.operator" \
--with-pam-module=opendirectory \
--with-privateinclude=/usr/local/include \
--with-components=$(CUPS_Components) \
$(GSSAPI_Options) \
$(Extra_Configure_Flags)
# Add "--enable-debug-guards" during OS development, remove for production...
# --enable-debug-guards \
# CUPS is able to build 1/2/3/4-way fat on its own, so don't override the
# compiler flags in make, just in configure...
Environment = CC=`/usr/bin/xcrun --find clang` \
CXX=`/usr/bin/xcrun --find clang++` \
CFLAGS="`$(SRCROOT)/gettargetflags.sh cflags`" \
CPPFLAGS="`$(SRCROOT)/gettargetflags.sh cppflags`" \
CXXFLAGS="`$(SRCROOT)/gettargetflags.sh cxxflags`" \
DSOFLAGS="`$(SRCROOT)/gettargetflags.sh dsoflags` -dynamiclib -single_module -lc" \
LDFLAGS="`$(SRCROOT)/gettargetflags.sh ldflags`" \
CODE_SIGN="/usr/bin/true"
# The default target installs programs and data files...
Install_Target = install-data install-exec
Install_Flags = -j`sysctl -n hw.activecpu`
# The alternate target installs libraries and header files...
#Install_Target = install-headers install-libs
#Install_Flags =
# Shadow the source tree and force a re-configure as needed
lazy_install_source:: $(BuildDirectory)/Makedefs
$(_v) if [ -L "$(BuildDirectory)/Makefile" ]; then \
$(RM) "$(BuildDirectory)/Makefile"; \
$(CP) "$(Sources)/Makefile" "$(BuildDirectory)/Makefile"; \
fi
# Re-configure when the configure script and config.h, cups-config, or Makedefs
# templates change.
$(BuildDirectory)/Makedefs: $(Sources)/configure $(Sources)/Makedefs.in \
$(Sources)/config.h.in $(Sources)/cups-config.in \
$(SRCROOT)/Makefile
$(_v) $(RM) "$(BuildDirectory)/Makefile"
$(_v) $(MAKE) shadow_source
$(_v) $(RM) $(ConfigStamp)
# Install fast, without copying sources...
install-fast: $(Sources)/Makedefs
$(_v) umask $(Install_Mask) ; $(MAKE) -C $(Sources) $(Environment) $(Install_Flags) install
install-clean: $(Sources)/Makedefs
$(_v) umask $(Install_Mask) ; $(MAKE) -C $(Sources) $(Environment) $(Install_Flags) distclean
$(_v) cd $(Sources) && $(Environment) LD_TRACE_FILE=/dev/null $(Configure) $(Configure_Flags)
$(_v) umask $(Install_Mask) ; $(MAKE) -C $(Sources) $(Environment) $(Install_Flags) install
$(Sources)/Makedefs: $(Sources)/configure $(Sources)/Makedefs.in \
$(Sources)/config.h.in $(Sources)/cups-config.in
@echo "Configuring $(Project) with \"$(Configure_Flags)\"..."
$(_v) cd $(Sources) && $(Environment) LD_TRACE_FILE=/dev/null \
$(Configure) $(Configure_Flags)
# Install everything.
install-all: configure
$(_v) umask $(Install_Mask) ; $(MAKE) -C $(BuildDirectory) $(Environment) $(Install_Flags) install
# Install the libraries and headers.
install-libs: configure
$(_v) umask $(Install_Mask) ; $(MAKE) -C $(BuildDirectory) $(Environment) $(Install_Flags) install-headers install-libs
# The plist keeps track of the open source version we ship...
OSV = $(DSTROOT)/usr/local/OpenSourceVersions
OSL = $(DSTROOT)/usr/local/OpenSourceLicenses
install-plist:
$(MKDIR) $(OSV)
$(INSTALL_FILE) $(SRCROOT)/$(Project).plist $(OSV)/$(Project).plist
$(MKDIR) $(OSL)
$(INSTALL_FILE) $(Sources)/LICENSE $(OSL)/$(Project).txt
# InstallAPI stuff...
SUPPORTS_TEXT_BASED_API ?= YES
$(info SUPPORTS_TEXT_BASED_API=$(SUPPORTS_TEXT_BASED_API))
ifeq ($(SUPPORTS_TEXT_BASED_API),YES)
install-libs: installapi-verify
endif
TAPI_INSTALL_PREFIX = $(DSTROOT)
TAPI_LIBRARY_PATH = $(TAPI_INSTALL_PREFIX)/usr/lib
TAPI_COMMON_OPTS = `$(SRCROOT)/gettargetflags.sh tapi` \
-dynamiclib \
-install_name /usr/lib/libcups.2.dylib \
-current_version 2.14.0 \
-compatibility_version 2.0.0 \
-o $(OBJROOT)/cups/libcups.2.tbd
TAPI_VERIFY_OPTS = $(TAPI_COMMON_OPTS) \
--verify-mode=Pedantic \
--verify-against=$(TAPI_LIBRARY_PATH)/libcups.2.dylib
installapi: configure
@echo
@echo ++++++++++++++++++++++
@echo + Running InstallAPI +
@echo ++++++++++++++++++++++
@echo
$(_v) umask $(Install_Mask) ; $(MAKE) -C $(BuildDirectory) $(Environment) $(Install_Flags) libs install-headers
@if [ "$(SUPPORTS_TEXT_BASED_API)" != "YES" ]; then \
echo "installapi was requested, but SUPPORTS_TEXT_BASED_API has been disabled."; \
exit 1; \
fi
xcrun --sdk $(SDKROOT) tapi installapi $(TAPI_COMMON_OPTS) $(TAPI_INSTALL_PREFIX)
if test -f $(OBJROOT)/cups/libcupsimage.2.dylib; then \
xcrun --sdk $(SDKROOT) tapi stubify --set-installapi-flag $(OBJROOT)/cups/libcupsimage.2.dylib; \
fi
$(_v) umask $(Install_Mask) ; $(MAKE) $(Environment) $(Install_Flags) install-tbds
install-tbds:
$(INSTALL) -d -m 0755 $(TAPI_LIBRARY_PATH)
$(INSTALL) -c -m 0755 $(OBJROOT)/cups/libcups.2.tbd $(TAPI_LIBRARY_PATH)
ln -s libcups.2.tbd $(TAPI_LIBRARY_PATH)/libcups.tbd
if test -f $(OBJROOT)/cups/libcupsimage.2.tbd; then \
$(INSTALL) -c -m 0755 $(OBJROOT)/cups/libcupsimage.2.tbd $(TAPI_LIBRARY_PATH); \
ln -s libcupsimage.2.tbd $(TAPI_LIBRARY_PATH)/libcupsimage.tbd; \
fi
installapi-verify: configure
@echo
@echo "+++++++++++++++++++++++++++++++"
@echo "+ Running InstallAPI (verify) +"
@echo "+++++++++++++++++++++++++++++++"
@echo
$(_v) umask $(Install_Mask) ; $(MAKE) -C $(BuildDirectory) $(Environment) $(Install_Flags) install-libs install-headers
xcrun --sdk $(SDKROOT) tapi installapi $(TAPI_VERIFY_OPTS) $(TAPI_INSTALL_PREFIX)
if test -f $(OBJROOT)/cups/libcupsimage.2.dylib; then \
xcrun --sdk $(SDKROOT) tapi stubify --set-installapi-flag $(OBJROOT)/cups/libcupsimage.2.dylib; \
fi
$(_v) umask $(Install_Mask) ; $(MAKE) $(Environment) $(Install_Flags) install-tbds