diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 12:24:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 12:25:20 +0100 |
commit | 6f2fbc381de2c12f4ca9c2fc515c4f6860d07095 (patch) | |
tree | 85dc0ea057a0071b0286baee8f0144835b6b71bd | |
parent | 3034b144d0062e9c4394b901aded43fec117ed11 (diff) |
DesktopEnvironment example does not work on OS X
...as nativelib/unix/nativeview.c uses X11.
Change-Id: Ifdc0206b77085db909155fb61c4a345f2813849d
-rw-r--r-- | odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile index b4e69cfd1228..42271086aef0 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile @@ -81,8 +81,13 @@ endif # Targets .PHONY: ALL +ifeq "$(OS)" "MACOSX" +ALL : + @printf 'This example does not work on Mac OS X\n' +else ALL : $(SUBDIR) \ $(EXAMPLE_NAME) +endif include $(SETTINGS)/stdtarget.mk |