From: Jelmer Vernooij Date: Sat, 14 Jun 2008 19:40:23 +0000 (+0200) Subject: Avoid using .DEFAULT_GOAL - it's only available in gmake 3.81 and higher. X-Git-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=9a169c341bfb0c4ff423f05c27345d439890576c Avoid using .DEFAULT_GOAL - it's only available in gmake 3.81 and higher. --- diff --git a/source/Makefile b/source/Makefile index 1e5066b0020a..37d601f4f3d6 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: