diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-06-14 21:40:23 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-06-14 21:40:23 +0200 |
commit | 9a882558fe197562bb2c28cee68483bf0a440a2d (patch) | |
tree | 5ef843808974d4677887497f66b05aa83d86e607 /source4/Makefile | |
parent | 2daf2897d5c70c0efbeba9b827c62700b9a9537c (diff) | |
download | samba-9a882558fe197562bb2c28cee68483bf0a440a2d.tar.gz samba-9a882558fe197562bb2c28cee68483bf0a440a2d.tar.bz2 samba-9a882558fe197562bb2c28cee68483bf0a440a2d.zip |
Avoid using .DEFAULT_GOAL - it's only available in gmake 3.81 and higher.
(This used to be commit 9a169c341bfb0c4ff423f05c27345d439890576c)
Diffstat (limited to 'source4/Makefile')
-rw-r--r-- | source4/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/Makefile b/source4/Makefile index 1e5066b002..37d601f4f3 100644 --- a/source4/Makefile +++ b/source4/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: |