diff options
author | Ben Byer <bbyer@apple.com> | 2007-02-15 05:09:29 -0800 |
---|---|---|
committer | Ben Byer <bbyer@apple.com> | 2007-02-15 05:09:29 -0800 |
commit | 3ead1afe78d2913f08c8144cb2d3813c6b159488 (patch) | |
tree | 5f2590ad0de9930abe6efd1173f10c6235f39dd8 /hw/darwin/bundle/Spanish.lproj | |
parent | d570ff7c81858a3174686b46a088f67563b4a2d5 (diff) |
Beginning of patches to add XDarwin support to the modular tree;
special thanks to Torrey Lyons and Peter O'Gorman for making this possible.
This is the automake framework for the XDarwin.app interface files.
Diffstat (limited to 'hw/darwin/bundle/Spanish.lproj')
-rw-r--r-- | hw/darwin/bundle/Spanish.lproj/Makefile.am | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/hw/darwin/bundle/Spanish.lproj/Makefile.am b/hw/darwin/bundle/Spanish.lproj/Makefile.am new file mode 100644 index 000000000..438d0c2bd --- /dev/null +++ b/hw/darwin/bundle/Spanish.lproj/Makefile.am @@ -0,0 +1,36 @@ +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 + +Spanishlprojdir = $(resourcesdir)/Spanish.lproj + +Spanishlproj_DATA = \ + XDarwinHelp.html \ + InfoPlist.strings \ + Credits.rtf Localizable.strings + +Spanishlprojnibdir = $(Spanishlprojdir)/MainMenu.nib +Spanishlprojnib_DATA = MainMenu.nib/classes.nib MainMenu.nib/objects.nib + +InfoPlist.strings: $(srcdir)/../English.lproj/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 \ + Localizable.strings \ + MainMenu.nib/classes.nib \ + MainMenu.nib/objects.nib \ + XDarwinHelp.html.cpp |