diff options
author | Herb Lewis <herb@samba.org> | 2002-12-17 21:45:50 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-12-17 21:45:50 +0000 |
commit | 2134817842a8fceea9e922e00272c3adef864f9a (patch) | |
tree | e0bd8b43a31d0be623d5d1b7c0ddb5eef74570f3 /source3 | |
parent | b1cfbb0f69e9aeefdc037760e5738c3c4bc4fc05 (diff) | |
download | samba-2134817842a8fceea9e922e00272c3adef864f9a.tar.gz samba-2134817842a8fceea9e922e00272c3adef864f9a.tar.bz2 samba-2134817842a8fceea9e922e00272c3adef864f9a.zip |
fix make proto to work with SGI smake
(This used to be commit 773e5af6eb61fc38f8e45ea0a2afd6922cc71fd5)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 8617bdeed6..a13197823c 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1114,10 +1114,15 @@ include/tdbsam2_parse_info.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 include/tdbsam2_parse_info.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; \ + $(MAKE) include/tdbsam2_parse_info.h proto: headers |