diff options
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index dbefd4add0..f6709e07d0 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -2300,15 +2300,13 @@ clean: delheaders # removed by "make clean" this will always be run when you do anything # afterwards. proto_exists: include/build_env.h \ - libnet/libnet_proto.h \ smbd/build_options.c @touch proto_exists delheaders: @echo Removing prototype headers @rm -f include/build_env.h \ - smbd/build_options.c \ - libnet/libnet_proto.h + smbd/build_options.c MKPROTO_SH = $(srcdir)/script/mkproto.sh @@ -2317,11 +2315,6 @@ include/build_env.h: script/build_env.sh @$(SHELL) $(srcdir)/script/build_env.sh $(srcdir) $(builddir) $(CC) \ > $(builddir)/include/build_env.h -libnet/libnet_proto.h: - @cd $(srcdir) && $(SHELL) $(MKPROTO_SH) $(AWK) \ - -h _LIBNET_PROTO_H_ $(builddir)/libnet/libnet_proto.h \ - $(LIBNET_OBJ) - # "make headers" or "make proto" calls a subshell because we need to # make sure these commands are executed in sequence even for a # parallel make. @@ -2329,7 +2322,6 @@ headers: $(MAKE) delheaders; \ $(MAKE) smbd/build_options.c; \ $(MAKE) include/build_env.h; \ - $(MAKE) libnet/libnet_proto.h; proto: headers |