diff options
author | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-07-23 12:48:45 +0200 |
---|---|---|
committer | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-07-23 12:48:45 +0200 |
commit | e401e6846b174c3f5deda3b3e19d89de2e4ac78a (patch) | |
tree | eb2a9a02a8a464c59302b6da0fadca5e5f449e3e /xmloff/Makefile | |
parent | 17381ec4f0f9aa1b0283ff3096e15bac86413c4d (diff) |
gnumake2: some more checks for module makefiles
Diffstat (limited to 'xmloff/Makefile')
-rw-r--r-- | xmloff/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/xmloff/Makefile b/xmloff/Makefile index b198cc3d4c32..3225bc97e12c 100644 --- a/xmloff/Makefile +++ b/xmloff/Makefile @@ -25,7 +25,15 @@ # #************************************************************************* -include $(dir $(firstword $(MAKEFILE_LIST)))/../SourcePath.mk +ifneq ($(MAKE_VERSION),3.81) +$(error You need at least GNU Make 3.81!) +endif + +ifeq ($(strip $(SOLARENV)),) +$(error No environment set!) +endif + +include $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/../SourcePath.mk GBUILDDIR := $(SOLARENV)/gbuild include $(GBUILDDIR)/gbuild.mk |