mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-28 16:50:13 +01:00
special thanks to Torrey Lyons and Peter O'Gorman for making this possible. This is the automake framework for the XDarwin.app interface files.
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
BINDIR = ${bindir}
|
|
include $(top_srcdir)/cpprules.in
|
|
XINITDIR = $(libdir)/X11/xinit
|
|
XDEFS = \
|
|
-DX_VERSION="$(PLIST_VERSION_STRING)" \
|
|
-DX_PRE_RELEASE="$(PRE)" \
|
|
-DX_REL_DATE="$(XORG_DATE)" \
|
|
-DX_VENDOR_NAME="$(VENDOR_STRING)" \
|
|
-DX_VENDOR_LINK="$(PLIST_VENDOR_WEB)"
|
|
|
|
resourcesdir = @APPLE_APPLICATIONS_DIR@/XDarwin.app/Contents/Resources
|
|
|
|
Englishlprojdir = $(resourcesdir)/English.lproj
|
|
Englishlproj_DATA = \
|
|
XDarwinHelp.html \
|
|
InfoPlist.strings \
|
|
Credits.rtf Localizable.strings
|
|
|
|
Englishlprojnibdir = $(Englishlprojdir)/MainMenu.nib
|
|
Englishlprojnib_DATA = MainMenu.nib/classes.nib MainMenu.nib/objects.nib
|
|
|
|
InfoPlist.strings: InfoPlist.strings.cpp
|
|
$(RAWCPP) $(RAWCPPFLAGS) $(XDEFS) $(CPP_FILES_FLAGS) $< | $(CPP_SED_MAGIC) | $(SED) -e's/__quote__/"/g' > $@
|
|
|
|
XDarwinHelp.html: XDarwinHelp.html.cpp
|
|
$(RAWCPP) $(RAWCPPFLAGS) $(XDEFS) $(CPP_FILES_FLAGS) $< | $(CPP_SED_MAGIC) > $@
|
|
|
|
CLEANFILES = XDarwinHelp.html InfoPlist.strings
|
|
|
|
EXTRA_DIST = \
|
|
Credits.rtf Localizable.strings \
|
|
MainMenu.nib/classes.nib \
|
|
MainMenu.nib/objects.nib \
|
|
XDarwinHelp.html.cpp \
|
|
InfoPlist.strings.cpp
|