From 9a169c341bfb0c4ff423f05c27345d439890576c Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 14 Jun 2008 21:40:23 +0200 Subject: [PATCH] Avoid using .DEFAULT_GOAL - it's only available in gmake 3.81 and higher. --- source/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/Makefile b/source/Makefile index 1e5066b0020..37d601f4f3d 100644 --- a/source/Makefile +++ b/source/Makefile @@ -1,6 +1,10 @@ #!gmake # The Samba 4 Makefile. # This file is *NOT* autogenerated. +# +.DEFAULT_GOAL := all + +default: all include mkconfig.mk @@ -24,8 +28,6 @@ HOSTLD_FLAGS = $(LDFLAGS) $(SYS_LDFLAGS) $(srcdir)/version.h: $(srcdir)/VERSION @$(SHELL) script/mkversion.sh VERSION $(srcdir)/version.h $(srcdir)/ -.DEFAULT_GOAL := all - ifneq ($(automatic_dependencies),yes) ALL_PREDEP = basics .NOTPARALLEL: -- 2.47.2