mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-07 06:18:03 +02:00
so the user can choose something other than /bin/sh
(cherry picked from commit b549cf18ce)
26 lines
660 B
Makefile
26 lines
660 B
Makefile
bin_SCRIPTS = x11app
|
|
|
|
.PHONY: x11app
|
|
|
|
x11app:
|
|
xcodebuild CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ARCHS="$(X11APP_ARCHS)"
|
|
|
|
install-data-hook:
|
|
xcodebuild install DSTROOT="/$(DESTDIR)" INSTALL_PATH="$(APPLE_APPLICATIONS_DIR)" DEPLOYMENT_LOCATION=YES SKIP_INSTALL=NO ARCHS="$(X11APP_ARCHS)"
|
|
|
|
clean-local:
|
|
rm -rf build
|
|
|
|
resourcedir=$(libdir)/X11/xserver
|
|
resource_DATA = Xquartz.plist
|
|
|
|
EXTRA_DIST = \
|
|
Info.plist \
|
|
X11.icns \
|
|
bundle-main.c \
|
|
English.lproj/InfoPlist.strings \
|
|
English.lproj/Localizable.strings \
|
|
English.lproj/main.nib/classes.nib \
|
|
English.lproj/main.nib/info.nib \
|
|
English.lproj/main.nib/keyedobjects.nib \
|
|
X11.xcodeproj/project.pbxproj
|