diff options
author | Simo Sorce <idra@samba.org> | 2003-05-02 18:24:30 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2003-05-02 18:24:30 +0000 |
commit | 8caaebf56e02c0c4754e79145819c89b66b552cc (patch) | |
tree | 7932f3b2d40fa29e5913fb961b79148c27604ab0 | |
parent | 7474488713843d59a7ddd3fca51a924f1a482393 (diff) | |
download | samba-8caaebf56e02c0c4754e79145819c89b66b552cc.tar.gz samba-8caaebf56e02c0c4754e79145819c89b66b552cc.tar.xz samba-8caaebf56e02c0c4754e79145819c89b66b552cc.zip |
exclude tdbsam2.h generation until it will be used
(This used to be commit 28b73a39219fd717c60eba207143fb40d5ff123a)
-rw-r--r-- | source3/Makefile.in | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index c3380eaf281..f9e4ee8038f 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1251,8 +1251,8 @@ modules_clean: # afterwards. proto_exists: include/proto.h include/wrepld_proto.h include/build_env.h \ nsswitch/winbindd_proto.h web/swat_proto.h \ - client/client_proto.h utils/net_proto.h \ - include/tdbsam2_parse_info.h + client/client_proto.h utils/net_proto.h +# include/tdbsam2_parse_info.h delheaders: @echo Removing prototype headers @@ -1264,8 +1264,8 @@ delheaders: @/bin/rm -f 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 + client/client_proto.h utils/net_proto.h +# include/tdbsam2_parse_info.h include/proto.h: @echo Building include/proto.h @@ -1303,14 +1303,15 @@ utils/net_proto.h: -h _CLIENT_PROTO_H_ utils/net_proto.h \ $(NET_OBJ1) -include/tdbsam2_parse_info.h: - @if test -n "$(PERL)"; then \ - cd $(srcdir) && @PERL@ -w script/genstruct.pl \ - -o include/tdbsam2_parse_info.h $(CC) -E -O2 -g \ - include/tdbsam2.h; \ - else \ - echo Unable to build $@, continuing; \ - fi +# not used yet an perl dependent +#include/tdbsam2_parse_info.h: +# @if test -n "$(PERL)"; then \ +# cd $(srcdir) && @PERL@ -w script/genstruct.pl \ +# -o include/tdbsam2_parse_info.h $(CC) -E -O2 -g \ +# include/tdbsam2.h; \ +# else \ +# echo Unable to build $@, continuing; \ +# fi # "make headers" or "make proto" calls a subshell because we need to # make sure these commands are executed in sequence even for a @@ -1323,8 +1324,8 @@ headers: $(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 + $(MAKE) utils/net_proto.h; +# $(MAKE) include/tdbsam2_parse_info.h proto: headers |