diff options
Diffstat (limited to 'odk')
-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 |