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 | 93a3eed87acd6581f851ff92a3332de8e0ff8c29 (patch) | |
tree | 2b689e3c563fb786b38263a4c14eb3be9412c35d /toolkit/Makefile | |
parent | 74284c8e763f19cd9f7891c5c836e0a53abf06b3 (diff) |
gnumake2: some more checks for module makefiles
Diffstat (limited to 'toolkit/Makefile')
-rw-r--r-- | toolkit/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/toolkit/Makefile b/toolkit/Makefile index b198cc3d4c32..3225bc97e12c 100644 --- a/toolkit/Makefile +++ b/toolkit/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 |