summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/build/smb_build/makefile.pm438
-rw-r--r--source4/main.mk78
2 files changed, 167 insertions, 349 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm
index f1a6262586..929c4add18 100644
--- a/source4/build/smb_build/makefile.pm
+++ b/source4/build/smb_build/makefile.pm
@@ -20,8 +20,16 @@ sub new($$$$)
bless($self, $myname);
+ $self->{manpages} = [];
+ $self->{sbin_progs} = [];
+ $self->{bin_progs} = [];
+ $self->{static_libs} = [];
+ $self->{shared_libs} = [];
+ $self->{headers} = [];
$self->{output} = "";
+ $self->{mkfile} = $mkfile;
+
$self->output("################################################\n");
$self->output("# Autogenerated by build/smb_build/makefile.pm #\n");
$self->output("################################################\n");
@@ -31,40 +39,32 @@ sub new($$$$)
$self->_prepare_path_vars();
$self->_prepare_compiler_linker();
- $self->_prepare_SUFFIXES();
$self->_prepare_hostcc_rule();
- $self->_prepare_depend_CC_rule();
$self->_prepare_std_CC_rule("c","o",'$(PICFLAG)',"Compiling","Rule for std objectfiles");
$self->_prepare_std_CC_rule("h","h.gch",'$(PICFLAG)',"Precompiling","Rule for precompiled headerfiles");
- $self->_prepare_man_rule("1");
- $self->_prepare_man_rule("3");
- $self->_prepare_man_rule("5");
- $self->_prepare_man_rule("7");
-
- $self->_prepare_config_status();
+ $self->_prepare_mk_files();
$self->_prepare_dummy_MAKEDIR($CTX);
- $self->_prepare_manpages($CTX);
- $self->_prepare_binaries($CTX);
- $self->_prepare_libraries($CTX);
- $self->_prepare_headers($CTX);
- $self->_prepare_target_settings($CTX);
- $self->_prepare_rule_lists($CTX);
- $self->_prepare_clean_rules();
- if ($self->{developer}) {
- $self->output(<<__EOD__
-#-include \$(_ALL_OBJS_OBJS:.o=.d)
-IDL_FILES = \$(wildcard librpc/idl/*.idl)
-\$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_%.c,\$(IDL_FILES)) \\
-\$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_\%_c.c,\$(IDL_FILES)) \\
-\$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_%.h,\$(IDL_FILES)): idl
-__EOD__
-);
+ foreach my $key (values %$CTX) {
+ if (defined($key->{OBJ_LIST})) {
+ $self->_prepare_obj_list($key->{TYPE}, $key);
+ $self->_prepare_cflags($key->{TYPE}, $key);
+ }
}
+
+ foreach my $key (values %$CTX) {
+ next unless defined $key->{OUTPUT_TYPE};
- $self->output($mkfile);
+ $self->MergedObj($key) if $key->{OUTPUT_TYPE} eq "MERGEDOBJ";
+ $self->ObjList($key) if $key->{OUTPUT_TYPE} eq "OBJLIST";
+ $self->StaticLibrary($key) if $key->{OUTPUT_TYPE} eq "STATIC_LIBRARY";
+ $self->SharedLibrary($key) if $key->{OUTPUT_TYPE} eq "SHARED_LIBRARY";
+ $self->Binary($key) if $key->{OUTPUT_TYPE} eq "BINARY";
+ $self->Manpage($key) if defined($key->{MANPAGE});
+ $self->Header($key) if defined($key->{PUBLIC_HEADERS});
+ }
return $self;
}
@@ -107,25 +107,6 @@ PRIVATEDIR = $self->{config}->{privatedir}
__EOD__
);
- $self->output(<< '__EOD__'
-
-# The permissions to give the executables
-INSTALLPERMS = 0755
-
-# set these to where to find various files
-# These can be overridden by command line switches (see smbd(8))
-# or in smb.conf (see smb.conf(5))
-CONFIGFILE = $(CONFIGDIR)/smb.conf
-LMHOSTSFILE = $(CONFIGDIR)/lmhosts
-
-PATH_FLAGS = -DCONFIGFILE=\"$(CONFIGFILE)\" -DSBINDIR=\"$(SBINDIR)\" \
- -DBINDIR=\"$(BINDIR)\" -DLMHOSTSFILE=\"$(LMHOSTSFILE)\" \
- -DLOCKDIR=\"$(LOCKDIR)\" -DPIDDIR=\"$(PIDDIR)\" -DLIBDIR=\"$(LIBDIR)\" \
- -DLOGFILEBASE=\"$(LOGFILEBASE)\" -DSHLIBEXT=\"$(SHLIBEXT)\" \
- -DCONFIGDIR=\"$(CONFIGDIR)\" -DNCALRPCDIR=\"$(NCALRPCDIR)\" \
- -DSWATDIR=\"$(SWATDIR)\" -DPRIVATE_DIR=\"$(PRIVATEDIR)\"
-__EOD__
-);
}
sub _prepare_compiler_linker($)
@@ -171,121 +152,18 @@ __EOD__
);
}
-sub _prepare_SUFFIXES($)
+sub _prepare_mk_files($)
{
my $self = shift;
- $self->output(<< '__EOD__'
-.SUFFIXES: .x .c .et .y .l .d .o .h .h.gch .a .so .1 .1.xml .3 .3.xml .5 .5.xml .7 .7.xml .ho
-
-__EOD__
-);
-}
-
-sub _prepare_man_rule($$)
-{
- my ($self, $suffix) = @_;
-
- $self->output(<< "__EOD__"
-.$suffix.xml.$suffix:
- \$(XSLTPROC) -o \$@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl \$<
-
-__EOD__
-);
-}
-
-sub _prepare_config_status($)
-{
- my $self = shift;
- my @parsed_files = @smb_build::config_mk::parsed_files;
- my $deps = "";
-
- foreach (@parsed_files) {
- /^([^ |]+)/;
- $deps.= " $1";
- }
-
- $self->output("
-
-Makefile: config.status $deps
- ./config.status
-
-");
-}
-
-sub _prepare_headers($$)
-{
- my ($self, $ctx) = @_;
+ my @tmp = ();
- my @headers = ();
- foreach (values %$ctx) {
- next unless defined $_->{PUBLIC_HEADERS};
-
- foreach my $h (@{$_->{PUBLIC_HEADERS}}) {
- push (@headers, "$_->{BASEDIR}/$h");
- }
- }
-
- $self->output("PUBLIC_HEADERS = " . array2oneperline(\@headers) . "\n");
-}
-
-sub _prepare_libraries($$)
-{
- my ($self, $ctx) = @_;
-
- my @shared_list = ();
- my @static_list = ();
-
- foreach (values %$ctx) {
- next unless defined $_->{OUTPUT_TYPE};
- next unless defined($_->{INSTALLDIR});
- next unless ($_->{INSTALLDIR} eq "LIBDIR");
-
- push(@shared_list, $_->{OUTPUT}) if ($_->{OUTPUT_TYPE} eq "SHARED_LIBRARY");
- push(@static_list, $_->{OUTPUT}) if ($_->{OUTPUT_TYPE} eq "STATIC_LIBRARY");
+ foreach (@smb_build::config_mk::parsed_files) {
+ s/ .*$//g;
+ push (@tmp, $_);
}
- $self->output("STATIC_LIBS = " . array2oneperline(\@static_list) . "\n");
- $self->output("SHARED_LIBS = " . array2oneperline(\@shared_list) . "\n");
-
-}
-
-sub _prepare_binaries($$)
-{
- my ($self, $ctx) = @_;
-
- my @bbn_list = ();
- my @sbn_list = ();
-
- foreach (values %$ctx) {
- next unless defined $_->{OUTPUT_TYPE};
- next unless ($_->{OUTPUT_TYPE} eq "BINARY");
-
- next unless defined($_->{INSTALLDIR});
-
- push(@sbn_list, $_->{OUTPUT}) if ($_->{INSTALLDIR} eq "SBINDIR");
- push(@bbn_list, $_->{OUTPUT}) if ($_->{INSTALLDIR} eq "BINDIR");
- }
-
- $self->output("BIN_PROGS = " . array2oneperline(\@bbn_list) . "\n");
- $self->output("SBIN_PROGS = " . array2oneperline(\@sbn_list) . "\n");
-}
-
-sub _prepare_manpages($$)
-{
- my ($self, $ctx) = @_;
-
- my @mp_list = ();
-
- foreach (values %$ctx) {
- my $dir = $_->{BASEDIR};
- next unless defined($dir);
- $dir =~ s/^\.\///g;
- push (@mp_list, "$dir/$_->{MANPAGE}") if (defined($_->{MANPAGE}) and $_->{MANPAGE} ne "");
- }
-
- my $mp = array2oneperline(\@mp_list);
- $self->output("MANPAGES = $mp\n");
+ $self->output("MK_FILES = " . array2oneperline(\@tmp) . "\n");
}
sub _prepare_dummy_MAKEDIR($$)
@@ -293,9 +171,6 @@ sub _prepare_dummy_MAKEDIR($$)
my ($self,$ctx) = @_;
$self->output(<< '__EOD__'
-bin/.dummy:
- @: >> $@ || : > $@
-
dynconfig.o: dynconfig.c Makefile
@echo Compiling $*.c
@$(CC) $(CFLAGS) $(PICFLAG) $(PATH_FLAGS) -c $< -o $@
@@ -308,35 +183,6 @@ __EOD__
$self->output("\n");
}
-sub _prepare_depend_CC_rule($)
-{
- my $self = shift;
- $self->output(<< '__EOD__'
-
-.c.d:
- @echo "Generating dependencies for $<"
- @$(CC) -MM -MG -MT $(<:.c=.o) -MF $@ $(CFLAGS) $<
-
-__EOD__
-);
-}
-
-###########################################################
-# This function creates a standard make rule which is using $(CC)
-#
-# $output = _prepare_std_CC_rule($srcext,$destext,$flags,$message,$comment)
-#
-# $srcext - sourcefile extension
-#
-# $destext - destinationfile extension
-#
-# $flags - additional compiler flags
-#
-# $message - logmessage which is echoed while running this rule
-#
-# $comment - just a comment what this rule should do
-#
-# $output - the resulting output buffer
sub _prepare_std_CC_rule($$$$$$)
{
my ($self,$src,$dst,$flags,$message,$comment) = @_;
@@ -374,8 +220,6 @@ __EOD__
$self->output("\n");
}
-
-
sub array2oneperline($)
{
my $array = shift;
@@ -390,60 +234,32 @@ sub array2oneperline($)
return $output;
}
-###########################################################
-# This function creates a object file list
-#
-# $output = _prepare_var_obj_list($var, $var_ctx)
-#
-# $var_ctx - the subsystem context
-#
-# $var_ctx->{NAME} - the <var> name
-# $var_ctx->{OBJ_LIST} - the list of objectfiles which sould be linked to this <var>
-#
-# $output - the resulting output buffer
-sub _prepare_obj_list($$)
+sub _prepare_obj_list($$$)
{
- my ($var,$ctx) = @_;
+ my ($self,$var,$ctx) = @_;
my $tmplist = array2oneperline($ctx->{OBJ_LIST});
- return "" if ($tmplist eq "");
+ return if ($tmplist eq "");
- return "$var\_$ctx->{NAME}_OBJS =$tmplist\n";
+ $self->output("$var\_$ctx->{NAME}_OBJS =$tmplist\n");
}
-sub _prepare_cflags($$)
+sub _prepare_cflags($$$)
{
- my ($var,$ctx) = @_;
+ my ($self, $var,$ctx) = @_;
my $tmplist = array2oneperline($ctx->{CFLAGS});
- return "" if ($tmplist eq "");
+ return if ($tmplist eq "");
- return "$var\_$ctx->{NAME}_CFLAGS =$tmplist\n";
+ $self->output("$var\_$ctx->{NAME}_CFLAGS =$tmplist\n");
}
-###########################################################
-# This function creates a make rule for linking a library
-#
-# $output = _prepare_shared_library_rule($library_ctx)
-#
-# $library_ctx - the library context
-#
-# $library_ctx->{NAME} - the library name
-#
-# $library_ctx->{DEPEND_LIST} - the list of rules on which this library depends
-#
-# $library_ctx->{LIBRARY_NAME} - the shared library name
-# $library_ctx->{LIBRARY_REALNAME} - the shared library real name
-# $library_ctx->{LIBRARY_SONAME} - the shared library soname
-# $library_ctx->{LINK_LIST} - the list of objectfiles and external libraries
-# which sould be linked to this shared library
-# $library_ctx->{LINK_FLAGS} - linker flags used by this shared library
-#
-# $output - the resulting output buffer
-sub _prepare_shared_library_rule($$)
+sub SharedLibrary($$)
{
my ($self,$ctx) = @_;
+ push (@{$self->{shared_libs}}, $ctx->{OUTPUT});
+
my $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
my $tmpshlink = array2oneperline($ctx->{LINK_LIST});
my $tmpshflag = array2oneperline($ctx->{LINK_FLAGS});
@@ -480,11 +296,11 @@ __EOD__
$self->output("library_$ctx->{NAME}: basics bin/lib$ctx->{LIBRARY_NAME}\n");
}
-sub _prepare_mergedobj_rule($$)
+sub MergedObj($$)
{
my ($self,$ctx) = @_;
- return "" unless $ctx->{TARGET};
+ return unless $ctx->{TARGET};
my $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
@@ -497,12 +313,12 @@ sub _prepare_mergedobj_rule($$)
$self->output("\n");
}
-sub _prepare_objlist_rule($$)
+sub ObjList($$)
{
my ($self,$ctx) = @_;
my $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
- return "" unless $ctx->{TARGET};
+ return unless $ctx->{TARGET};
$self->output("$ctx->{TYPE}_$ctx->{NAME}_DEPEND_LIST = $tmpdepend\n");
$self->output("$ctx->{TARGET}: ");
@@ -510,27 +326,12 @@ sub _prepare_objlist_rule($$)
$self->output("\t\@touch $ctx->{TARGET}\n");
}
-###########################################################
-# This function creates a make rule for linking a library
-#
-# $output = _prepare_static_library_rule($library_ctx)
-#
-# $library_ctx - the library context
-#
-# $library_ctx->{NAME} - the library name
-#
-# $library_ctx->{DEPEND_LIST} - the list of rules on which this library depends
-#
-# $library_ctx->{LIBRARY_NAME} - the static library name
-# $library_ctx->{LINK_LIST} - the list of objectfiles which sould be linked
-# to this static library
-# $library_ctx->{LINK_FLAGS} - linker flags used by this static library
-#
-# $output - the resulting output buffer
-sub _prepare_static_library_rule($$)
+sub StaticLibrary($$)
{
my ($self,$ctx) = @_;
+ push (@{$self->{static_libs}}, $ctx->{OUTPUT});
+
my $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
my $tmpstlink = array2oneperline($ctx->{LINK_LIST});
my $tmpstflag = array2oneperline($ctx->{LINK_FLAGS});
@@ -551,26 +352,26 @@ __EOD__
);
}
-###########################################################
-# This function creates a make rule for linking a binary
-#
-# $output = _prepare_binary_rule($binary_ctx)
-#
-# $binary_ctx - the binary context
-#
-# $binary_ctx->{NAME} - the binary name
-# $binary_ctx->{BINARY} - the binary binary name
-#
-# $binary_ctx->{DEPEND_LIST} - the list of rules on which this binary depends
-# $binary_ctx->{LINK_LIST} - the list of objectfiles and external libraries
-# which sould be linked to this binary
-# $binary_ctx->{LINK_FLAGS} - linker flags used by this binary
-#
-# $output - the resulting output buffer
-sub _prepare_binary_rule($$)
+sub Header($$)
+{
+ my ($self,$ctx) = @_;
+
+ foreach (@{$ctx->{PUBLIC_HEADERS}}) {
+ push (@{$self->{headers}}, "$ctx->{BASEDIR}/$_");
+ }
+}
+
+sub Binary($$)
{
my ($self,$ctx) = @_;
+ unless (defined($ctx->{INSTALLDIR})) {
+ } elsif ($ctx->{INSTALLDIR} eq "SBINDIR") {
+ push (@{$self->{sbin_progs}}, $ctx->{TARGET});
+ } elsif ($ctx->{INSTALLDIR} eq "BINDIR") {
+ push (@{$self->{bin_progs}}, $ctx->{TARGET});
+ }
+
my $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
my $tmplink = array2oneperline($ctx->{LINK_LIST});
my $tmpflag = array2oneperline($ctx->{LINK_FLAGS});
@@ -593,101 +394,40 @@ __EOD__
);
}
-sub _prepare_clean_rules($)
+sub Manpage($$)
{
- my ($self) = @_;
- $self->output(<< '__EOD__'
-clean: heimdal_clean
- @echo Removing headers
- @-rm -f include/proto.h
- @echo Removing objects
- @-find . -name '*.o' -exec rm -f '{}' \;
- @echo Removing binaries
- @-rm -f $(BIN_PROGS) $(SBIN_PROGS)
- @echo Removing dummy targets
- @-rm -f bin/.*_*
- @echo Removing generated files
- @-rm -rf librpc/gen_*
- @-rm -f lib/registry/regf.h lib/registry/tdr_regf*
-
-distclean: clean
- -rm -f bin/.dummy
- -rm -f include/config.h include/smb_build.h
- -rm -f Makefile
- -rm -f config.status
- -rm -f config.log config.cache
- -rm -f samba4-deps.dot
- -rm -f config.pm config.mk
- -rm -f lib/registry/winregistry.pc
-__EOD__
-);
- if ($self->{developer}) {
- $self->output("\t\@-rm -f \$(_ALL_OBJS_OBJS:.o=.d)\n");
- }
-
- $self->output(<< '__EOD__'
-
-removebackup:
- -rm -f *.bak *~ */*.bak */*~ */*/*.bak */*/*~ */*/*/*.bak */*/*/*~
-
-realdistclean: distclean removebackup
- -rm -f include/config.h.in
- -rm -f include/version.h
- -rm -f configure
- -rm -f $(MANPAGES)
-__EOD__
-);
-}
-
-sub _prepare_make_target($)
-{
- my $ctx = shift;
- my $tmpdepend;
-
- $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
+ my ($self,$ctx) = @_;
- return "$ctx->{TARGET}: basics $tmpdepend\n";
-}
+ my $dir = $ctx->{BASEDIR};
-sub _prepare_target_settings($$)
-{
- my ($self, $CTX) = @_;
+ $dir =~ s/^\.\///g;
- foreach my $key (values %$CTX) {
- if (defined($key->{OBJ_LIST})) {
- $self->output(_prepare_obj_list($key->{TYPE}, $key));
- $self->output(_prepare_cflags($key->{TYPE}, $key));
- }
- }
+ push (@{$self->{manpages}}, "$dir/$ctx->{MANPAGE}");
}
-sub _prepare_rule_lists($$)
+sub write($$)
{
- my ($self,$depend) = @_;
+ my ($self,$file) = @_;
- foreach my $key (values %{$depend}) {
- next unless defined $key->{OUTPUT_TYPE};
+ $self->output("MANPAGES = ".array2oneperline($self->{manpages})."\n");
+ $self->output("BIN_PROGS = " . array2oneperline($self->{bin_progs}) . "\n");
+ $self->output("SBIN_PROGS = " . array2oneperline($self->{sbin_progs}) . "\n");
+ $self->output("STATIC_LIBS = " . array2oneperline($self->{static_libs}) . "\n");
+ $self->output("SHARED_LIBS = " . array2oneperline($self->{shared_libs}) . "\n");
+ $self->output("PUBLIC_HEADERS = " . array2oneperline($self->{headers}) . "\n");
- $self->_prepare_mergedobj_rule($key) if $key->{OUTPUT_TYPE} eq "MERGEDOBJ";
- $self->_prepare_objlist_rule($key) if $key->{OUTPUT_TYPE} eq "OBJLIST";
- $self->_prepare_static_library_rule($key) if $key->{OUTPUT_TYPE} eq "STATIC_LIBRARY";
- $self->_prepare_shared_library_rule($key) if $key->{OUTPUT_TYPE} eq "SHARED_LIBRARY";
- $self->_prepare_binary_rule($key) if $key->{OUTPUT_TYPE} eq "BINARY";
+ if ($self->{developer}) {
+ $self->output(<<__EOD__
+#-include \$(_ALL_OBJS_OBJS:.o=.d)
+IDL_FILES = \$(wildcard librpc/idl/*.idl)
+\$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_%.c,\$(IDL_FILES)) \\
+\$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_\%_c.c,\$(IDL_FILES)) \\
+\$(patsubst librpc/idl/%.idl,librpc/gen_ndr/ndr_%.h,\$(IDL_FILES)): idl
+__EOD__
+);
}
-}
-###########################################################
-# This function creates Makefile from the OUTPUT
-# context
-#
-# create_makefile($OUTPUT)
-#
-# $OUTPUT - the global OUTPUT context
-#
-# $output - the resulting output buffer
-sub write($$)
-{
- my ($self,$file) = @_;
+ $self->output($self->{mkfile});
open(MAKEFILE,">$file") || die ("Can't open $file\n");
print MAKEFILE $self->{output};
diff --git a/source4/main.mk b/source4/main.mk
index 382535c528..3dc93748ff 100644
--- a/source4/main.mk
+++ b/source4/main.mk
@@ -58,6 +58,22 @@ showflags:
@echo " SHLD_FLAGS = $(SHLD_FLAGS)"
@echo " LIBS = $(LIBS)"
+# The permissions to give the executables
+INSTALLPERMS = 0755
+
+# set these to where to find various files
+# These can be overridden by command line switches (see smbd(8))
+# or in smb.conf (see smb.conf(5))
+CONFIGFILE = $(CONFIGDIR)/smb.conf
+LMHOSTSFILE = $(CONFIGDIR)/lmhosts
+
+PATH_FLAGS = -DCONFIGFILE=\"$(CONFIGFILE)\" -DSBINDIR=\"$(SBINDIR)\" \
+ -DBINDIR=\"$(BINDIR)\" -DLMHOSTSFILE=\"$(LMHOSTSFILE)\" \
+ -DLOCKDIR=\"$(LOCKDIR)\" -DPIDDIR=\"$(PIDDIR)\" -DLIBDIR=\"$(LIBDIR)\" \
+ -DLOGFILEBASE=\"$(LOGFILEBASE)\" -DSHLIBEXT=\"$(SHLIBEXT)\" \
+ -DCONFIGDIR=\"$(CONFIGDIR)\" -DNCALRPCDIR=\"$(NCALRPCDIR)\" \
+ -DSWATDIR=\"$(SWATDIR)\" -DPRIVATE_DIR=\"$(PRIVATEDIR)\"
+
install: showlayout installbin installdat installswat installmisc installlib \
installheader
@@ -114,6 +130,9 @@ uninstallheader:
uninstallman:
@$(SHELL) $(srcdir)/script/uninstallman.sh $(DESTDIR)$(MANDIR) $(MANPAGES)
+Makefile: config.status $(MK_FILES)
+ ./config.status
+
etags:
etags `find $(srcdir) -name "*.[ch]"`
@@ -159,6 +178,38 @@ basics: include/config.h \
idl \
heimdal_basics
+clean: heimdal_clean
+ @echo Removing headers
+ @-rm -f include/proto.h
+ @echo Removing objects
+ @-find . -name '*.o' -exec rm -f '{}' \;
+ @echo Removing binaries
+ @-rm -f $(BIN_PROGS) $(SBIN_PROGS)
+ @echo Removing dummy targets
+ @-rm -f bin/.*_*
+ @echo Removing generated files
+ @-rm -rf librpc/gen_*
+ @-rm -f lib/registry/regf.h lib/registry/tdr_regf*
+
+distclean: clean
+ -rm -f bin/.dummy
+ -rm -f include/config.h include/smb_build.h
+ -rm -f Makefile
+ -rm -f config.status
+ -rm -f config.log config.cache
+ -rm -f samba4-deps.dot
+ -rm -f config.pm config.mk
+ -rm -f lib/registry/winregistry.pc
+
+removebackup:
+ -rm -f *.bak *~ */*.bak */*~ */*/*.bak */*/*~ */*/*/*.bak */*/*/*~
+
+realdistclean: distclean removebackup
+ -rm -f include/config.h.in
+ -rm -f include/version.h
+ -rm -f configure
+ -rm -f $(MANPAGES)
+
test: $(DEFAULT_TEST_TARGET)
test-swrap: all
@@ -174,6 +225,19 @@ valgrindtest: all
SMBD_VALGRIND="xterm -n smbd -e valgrind -q --db-attach=yes --num-callers=30" \
./script/tests/selftest.sh ${selftest_prefix}/st quick SOCKET_WRAPPER
+bin/.dummy:
+ @: >> $@ || : > $@
+
+###############################################################################
+# File types
+###############################################################################
+
+.SUFFIXES: .x .c .et .y .l .d .o .h .h.gch .a .so .1 .1.xml .3 .3.xml .5 .5.xml .7 .7.xml .ho
+
+.c.d:
+ @echo "Generating dependencies for $<"
+ @$(CC) -MM -MG -MT $(<:.c=.o) -MF $@ $(CFLAGS) $<
+
.y.c:
@echo "Building $< with $(YACC)"
@-$(srcdir)/script/yacc_compile.sh "$(YACC)" "$<" "$@"
@@ -181,3 +245,17 @@ valgrindtest: all
.l.c:
@echo "Building $< with $(LEX)"
@-$(srcdir)/script/lex_compile.sh "$(LEX)" "$<" "$@"
+
+DOCBOOK_MANPAGE_URL = http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
+
+.1.xml.1:
+ $(XSLTPROC) -o $@ $(DOCBOOK_MANPAGE_URL) $<
+
+.3.xml.3:
+ $(XSLTPROC) -o $@ $(DOCBOOK_MANPAGE_URL) $<
+
+.5.xml.5:
+ $(XSLTPROC) -o $@ $(DOCBOOK_MANPAGE_URL) $<
+
+.7.xml.7:
+ $(XSLTPROC) -o $@ $(DOCBOOK_MANPAGE_URL) $<