diff options
author | Herb Lewis <herb@samba.org> | 2002-12-17 21:45:09 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-12-17 21:45:09 +0000 |
commit | 9eb8d07312f9550a8eefcf9a6397dc7bc93a58f7 (patch) | |
tree | 4694717c9ca53e3728d01abb94de6eaa9d57bae8 | |
parent | 1c318819cc043b472596186b255d75b12f8abbf8 (diff) | |
download | samba-9eb8d07312f9550a8eefcf9a6397dc7bc93a58f7.tar.gz samba-9eb8d07312f9550a8eefcf9a6397dc7bc93a58f7.tar.bz2 samba-9eb8d07312f9550a8eefcf9a6397dc7bc93a58f7.zip |
fix make proto to work with SGI smake
(This used to be commit 24dfb8c745c20968b413466003a16b5e3ab40a24)
-rw-r--r-- | source3/Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index d7147cb4d6..8f7e3735d1 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1071,10 +1071,14 @@ utils/net_proto.h: # make sure these commands are executed in sequence even for a # parallel make. headers: - $(MAKE) delheaders include/proto.h include/build_env.h \ - include/wrepld_proto.h nsswitch/winbindd_proto.h \ - web/swat_proto.h client/client_proto.h \ - utils/net_proto.h + $(MAKE) delheaders; \ + $(MAKE) include/proto.h; \ + $(MAKE) include/build_env.h; \ + $(MAKE) include/wrepld_proto.h; \ + $(MAKE) nsswitch/winbindd_proto.h; \ + $(MAKE) web/swat_proto.h; \ + $(MAKE) client/client_proto.h; \ + $(MAKE) utils/net_proto.h proto: headers |