r7315: Add support for custom makefile targets, e.g.:
[sfrench/samba-autobuild/.git] / source4 / build / smb_build / makefile.pm
1 ###########################################################
2 ### SMB Build System                                    ###
3 ### - create output for Makefile                        ###
4 ###                                                     ###
5 ###  Copyright (C) Stefan (metze) Metzmacher 2004       ###
6 ###  Released under the GNU GPL                         ###
7 ###########################################################
8
9 package makefile;
10 use strict;
11
12 sub _prepare_command_interpreters($)
13 {
14         my $ctx = shift;
15
16         return << '__EOD__';
17 SHELL=/bin/sh
18 PERL=@PERL@
19
20 __EOD__
21 }
22
23 sub _prepare_path_vars($)
24 {
25         my $ctx = shift;
26         my $output;
27
28         $output = << '__EOD__';
29 prefix=@prefix@
30 exec_prefix=@exec_prefix@
31 VPATH=@srcdir@
32 srcdir=@srcdir@
33 builddir=@builddir@
34
35 BASEDIR= @prefix@
36 BINDIR = @bindir@
37 SBINDIR = @sbindir@
38 LIBDIR = @libdir@
39 CONFIGDIR = @configdir@
40 VARDIR = @localstatedir@
41 SWATDIR = @swatdir@
42
43 # The permissions to give the executables
44 INSTALLPERMS = 0755
45
46 # set these to where to find various files
47 # These can be overridden by command line switches (see smbd(8))
48 # or in smb.conf (see smb.conf(5))
49 LOGFILEBASE = @logfilebase@
50 CONFIGFILE = $(CONFIGDIR)/smb.conf
51 LMHOSTSFILE = $(CONFIGDIR)/lmhosts
52 NCALRPCDIR = @localstatedir@/ncalrpc
53
54 # This is where smbpasswd et al go
55 PRIVATEDIR = @privatedir@
56 SMB_PASSWD_FILE = $(PRIVATEDIR)/smbpasswd
57
58 # the directory where lock files go
59 LOCKDIR = @lockdir@
60
61 # the directory where pid files go
62 PIDDIR = @piddir@
63
64 PASSWD_FLAGS = -DSMB_PASSWD_FILE=\"$(SMB_PASSWD_FILE)\" -DPRIVATE_DIR=\"$(PRIVATEDIR)\"
65 PATH_FLAGS1 = -DCONFIGFILE=\"$(CONFIGFILE)\"  -DSBINDIR=\"$(SBINDIR)\"
66 PATH_FLAGS2 = $(PATH_FLAGS1) -DBINDIR=\"$(BINDIR)\" 
67 PATH_FLAGS3 = $(PATH_FLAGS2) -DLMHOSTSFILE=\"$(LMHOSTSFILE)\" 
68 PATH_FLAGS4 = $(PATH_FLAGS3) -DLOCKDIR=\"$(LOCKDIR)\" -DPIDDIR=\"$(PIDDIR)\"
69 PATH_FLAGS5 = $(PATH_FLAGS4) -DLIBDIR=\"$(LIBDIR)\" \
70               -DLOGFILEBASE=\"$(LOGFILEBASE)\" -DSHLIBEXT=\"@SHLIBEXT@\"
71 PATH_FLAGS6 = $(PATH_FLAGS5) -DCONFIGDIR=\"$(CONFIGDIR)\" -DNCALRPCDIR=\"$(NCALRPCDIR)\"
72 PATH_FLAGS7 = $(PATH_FLAGS6) -DSWATDIR=\"$(SWATDIR)\"
73 PATH_FLAGS = $(PATH_FLAGS7) $(PASSWD_FLAGS)
74
75 __EOD__
76
77         return $output;
78 }
79
80 sub _prepare_compiler_linker($)
81 {
82         my $ctx = shift;
83
84         return << '__EOD__';
85 CC=@CC@
86 CFLAGS=-Iinclude -I. -I$(srcdir)/include -I$(srcdir) -D_SAMBA_BUILD_ -DHAVE_CONFIG_H -Ilib @CFLAGS@ @CPPFLAGS@
87
88 LD=@CC@
89 LD_FLAGS=@LDFLAGS@ @CFLAGS@ -Lbin
90
91 STLD=ar
92 STLD_FLAGS=-rc
93
94 SHLD=@CC@
95 SHLD_FLAGS=@LDSHFLAGS@ @LDFLAGS@ -Lbin
96
97 __EOD__
98 }
99
100 sub _prepare_default_rule($)
101 {
102         my $ctx = shift;
103         my $output;
104
105         $output = << '__EOD__';
106 default: all
107
108 __EOD__
109
110         return $output;
111 }
112
113 sub _prepare_SUFFIXES($)
114 {
115         my $ctx = shift;
116         my $output;
117
118         $output = << '__EOD__';
119 .SUFFIXES:
120 .SUFFIXES: .c .o .h .h.gch .a .so
121
122 __EOD__
123
124         return $output;
125 }
126
127 sub _prepare_IDL($)
128 {
129         my $ctx = shift;
130
131         return << '__EOD__';
132 idl_full: build/pidl/idl.pm
133         CPP="@CPP@" PERL="$(PERL)" script/build_idl.sh FULL
134
135 idl: build/pidl/idl.pm
136         @CPP="@CPP@" PERL="$(PERL)" script/build_idl.sh PARTIAL
137
138 build/pidl/idl.pm: build/pidl/idl.yp
139         -yapp -s build/pidl/idl.yp
140
141 pch: proto include/includes.h.gch
142
143 pch_clean:
144         -rm -f include/includes.h.gch
145
146 basics: idl proto_exists
147
148 test: @DEFAULT_TEST_TARGET@
149
150 test-swrap: all
151         SOCKET_WRAPPER_DIR=. ./script/tests/selftest.sh `pwd`/prefix-test
152
153 test-noswrap: all
154         ./script/tests/selftest.sh `pwd`/prefix-test
155
156 __EOD__
157 }
158
159 sub _prepare_dummy_MAKEDIR()
160 {
161         my $ctx = shift;
162
163         return  << '__EOD__';
164 bin/.dummy:
165         @: >> $@ || : > $@
166
167 dynconfig.o: dynconfig.c Makefile
168         @echo Compiling $*.c
169         @$(CC) $(CFLAGS) @PICFLAG@ $(PATH_FLAGS) -c $< -o $@
170 @BROKEN_CC@     -mv `echo $@ | sed 's%^.*/%%g'` $@
171
172 __EOD__
173 }
174
175 ###########################################################
176 # This function creates a standard make rule which is using $(CC)
177 #
178 # $output = _prepare_std_CC_rule($srcext,$destext,$flags,$message,$comment)
179 #
180 # $srcext -     sourcefile extension
181 #
182 # $destext -    destinationfile extension
183 #
184 # $flags -      additional compiler flags
185 #
186 # $message -    logmessage which is echoed while running this rule
187 #
188 # $comment -    just a comment what this rule should do
189 #
190 # $output -             the resulting output buffer
191 sub _prepare_std_CC_rule($$$$$)
192 {
193         my $src = shift;
194         my $dst = shift;
195         my $flags = shift;
196         my $message = shift;
197         my $comment = shift;
198         my $flagsstr = "";
199         my $output;
200
201         $output = << "__EOD__";
202 # $comment
203 .$src.$dst:
204         \@echo $message \$\*.$src
205         \@\$(CC) \$(TARGET_CFLAGS) \$(CFLAGS) $flags -c \$< -o \$\@
206 \@BROKEN_CC\@   -mv `echo \$\@ | sed 's%^.*/%%g'` \$\@
207
208 __EOD__
209
210         return $output;
211 }
212
213 sub array2oneperline($)
214 {
215         my $array = shift;
216         my $i;
217         my $output = "";
218
219         foreach my $str (@{$array}) {
220                 if (!defined($str)) {
221                         next;
222                 }
223
224                 $output .= " \\\n\t\t";
225                 $output .= $str;
226         }
227
228         return $output;
229 }
230
231 sub array2oneline($)
232 {
233         my $array = shift;
234         my $i;
235         my $output = "";
236
237         foreach my $str (@{$array}) {
238                 if (!defined($str)) {
239                         next;
240                 }
241
242                 $output .= $str;
243                 $output .= " ";
244         }
245
246         return $output;
247 }
248
249 ###########################################################
250 # This function creates a object file list
251 #
252 # $output = _prepare_var_obj_list($var, $var_ctx)
253 #
254 # $var_ctx -            the subsystem context
255 #
256 # $var_ctx->{NAME}      -       the <var> name
257 # $var_ctx->{OBJ_LIST}  -       the list of objectfiles which sould be linked to this <var>
258 #
259 # $output -             the resulting output buffer
260 sub _prepare_obj_list($$)
261 {
262         my $var = shift;
263         my $ctx = shift;
264
265         my $tmplist = array2oneperline($ctx->{OBJ_LIST});
266
267         return << "__EOD__";
268 # $var $ctx->{NAME} OBJ LIST
269 $var\_$ctx->{NAME}_OBJS =$tmplist
270
271 __EOD__
272 }
273
274 sub _prepare_cflags($$)
275 {
276         my $var = shift;
277         my $ctx = shift;
278
279         my $tmplist = array2oneperline($ctx->{CFLAGS});
280
281         return << "__EOD__";
282 $var\_$ctx->{NAME}_CFLAGS =$tmplist
283
284 __EOD__
285 }
286
287 ###########################################################
288 # This function creates a make rule for linking a library
289 #
290 # $output = _prepare_shared_library_rule($library_ctx)
291 #
292 # $library_ctx -                the library context
293 #
294 # $library_ctx->{NAME} -                the library name
295 #
296 # $library_ctx->{DEPEND_LIST} -         the list of rules on which this library depends
297 #
298 # $library_ctx->{LIBRARY_NAME} -        the shared library name
299 # $library_ctx->{LIBRARY_REALNAME} -    the shared library real name
300 # $library_ctx->{LIBRARY_SONAME} - the shared library soname
301 # $library_ctx->{LINK_LIST} -   the list of objectfiles and external libraries
302 #                                       which sould be linked to this shared library
303 # $library_ctx->{LINK_FLAGS} -  linker flags used by this shared library
304 #
305 # $output -             the resulting output buffer
306 sub _prepare_shared_library_rule($)
307 {
308         my $ctx = shift;
309         my $tmpdepend;
310         my $tmpstlink;
311         my $tmpstflag;
312         my $tmpshlink;
313         my $tmpshflag;
314         my $tmprules;
315         my $output;
316
317         $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
318
319         $tmpshlink = array2oneperline($ctx->{LINK_LIST});
320         $tmpshflag = array2oneperline($ctx->{LINK_FLAGS});
321
322         $output = << "__EOD__";
323 LIBRARY_$ctx->{NAME}_DEPEND_LIST =$tmpdepend
324 #
325 LIBRARY_$ctx->{NAME}_SHARED_LINK_LIST =$tmpshlink
326 LIBRARY_$ctx->{NAME}_SHARED_LINK_FLAGS =$tmpshflag
327 #
328
329 $ctx->{TARGET}: \$(LIBRARY_$ctx->{NAME}_DEPEND_LIST) \$(LIBRARY_$ctx->{NAME}_OBJS) bin/.dummy
330         \@echo Linking \$\@
331         \@\$(SHLD) \$(SHLD_FLAGS) -o \$\@ \\
332                 \$(LIBRARY_$ctx->{NAME}_SHARED_LINK_FLAGS) \\
333                 \$(LIBRARY_$ctx->{NAME}_SHARED_LINK_LIST)
334
335 __EOD__
336
337         if (defined($ctx->{LIBRARY_SONAME})) {
338             $output .= << "__EOD__";
339 # Symlink $ctx->{LIBRARY_SONAME}
340 bin/$ctx->{LIBRARY_SONAME}: bin/$ctx->{LIBRARY_REALNAME} bin/.dummy
341         \@echo Symlink \$\@
342         \@ln -sf $ctx->{LIBRARY_REALNAME} \$\@
343 # Symlink $ctx->{LIBRARY_NAME}
344 bin/$ctx->{LIBRARY_NAME}: bin/$ctx->{LIBRARY_SONAME} bin/.dummy
345         \@echo Symlink \$\@
346         \@ln -sf $ctx->{LIBRARY_SONAME} \$\@
347
348 __EOD__
349         }
350
351 $output .= << "__EOD__";
352 library_$ctx->{NAME}: basics bin/lib$ctx->{LIBRARY_NAME}
353
354 __EOD__
355
356         return $output;
357 }
358
359 sub _prepare_objlist_rule($)
360 {
361         my $ctx = shift;
362         my $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
363         my $output;
364
365         $output = "$ctx->{TYPE}_$ctx->{NAME}_DEPEND_LIST = $tmpdepend\n";
366
367         $output .= "$ctx->{TYPE}_$ctx->{NAME}: ";
368
369         if (defined ($ctx->{TARGET_CFLAGS})) {
370                 $output .= "\n\t@\$(MAKE) TARGET_CFLAGS=\"" . join(' ', @{$ctx->{TARGET_CFLAGS}}) . "\" ";
371         } 
372
373         $output .= "\$($ctx->{TYPE}_$ctx->{NAME}_DEPEND_LIST) \$($ctx->{TYPE}_$ctx->{NAME}_OBJS)\n";
374
375         return $output;
376 }
377
378 ###########################################################
379 # This function creates a make rule for linking a library
380 #
381 # $output = _prepare_static_library_rule($library_ctx)
382 #
383 # $library_ctx -                the library context
384 #
385 # $library_ctx->{NAME} -                the library name
386 #
387 # $library_ctx->{DEPEND_LIST} -         the list of rules on which this library depends
388 #
389 # $library_ctx->{LIBRARY_NAME} -        the static library name
390 # $library_ctx->{LINK_LIST} -   the list of objectfiles which sould be linked
391 #                                       to this static library
392 # $library_ctx->{LINK_FLAGS} -  linker flags used by this static library
393 #
394 # $output -             the resulting output buffer
395 sub _prepare_static_library_rule($)
396 {
397         my $ctx = shift;
398         my $tmpdepend;
399         my $tmpstlink;
400         my $tmpstflag;
401         my $tmpshlink;
402         my $tmpshflag;
403         my $tmprules;
404         my $output;
405
406         $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
407
408         $tmpstlink = array2oneperline($ctx->{LINK_LIST});
409         $tmpstflag = array2oneperline($ctx->{LINK_FLAGS});
410
411         $output = << "__EOD__";
412 LIBRARY_$ctx->{NAME}_DEPEND_LIST =$tmpdepend
413 #
414 LIBRARY_$ctx->{NAME}_STATIC_LINK_LIST =$tmpstlink
415 #
416 $ctx->{TARGET}: \$(LIBRARY_$ctx->{NAME}_DEPEND_LIST) \$(LIBRARY_$ctx->{NAME}_OBJS) bin/.dummy
417         \@echo Linking \$@
418         \@\$(STLD) \$(STLD_FLAGS) \$@ \\
419                 \$(LIBRARY_$ctx->{NAME}_STATIC_LINK_LIST)
420
421 library_$ctx->{NAME}: basics $ctx->{TARGET}
422
423 __EOD__
424
425         return $output;
426 }
427
428 ###########################################################
429 # This function creates a make rule for linking a binary
430 #
431 # $output = _prepare_binary_rule($binary_ctx)
432 #
433 # $binary_ctx -         the binary context
434 #
435 # $binary_ctx->{NAME} -         the binary name
436 # $binary_ctx->{BINARY} -       the binary binary name
437 #
438 # $binary_ctx->{DEPEND_LIST} -  the list of rules on which this binary depends
439 # $binary_ctx->{LINK_LIST} -    the list of objectfiles and external libraries
440 #                               which sould be linked to this binary
441 # $binary_ctx->{LINK_FLAGS} -   linker flags used by this binary
442 #
443 # $output -             the resulting output buffer
444 sub _prepare_binary_rule($)
445 {
446         my $ctx = shift;
447         my $tmpdepend;
448         my $tmplink;
449         my $tmpflag;
450         my $output;
451
452         $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
453         $tmplink = array2oneperline($ctx->{LINK_LIST});
454         $tmpflag = array2oneperline($ctx->{LINK_FLAGS});
455
456         $output = << "__EOD__";
457 #
458 BINARY_$ctx->{NAME}_DEPEND_LIST =$tmpdepend
459 BINARY_$ctx->{NAME}_LINK_LIST =$tmplink
460 BINARY_$ctx->{NAME}_LINK_FLAGS =$tmpflag
461 #
462 bin/$ctx->{BINARY}: bin/.dummy \$(BINARY_$ctx->{NAME}_DEPEND_LIST) \$(BINARY_$ctx->{NAME}_OBJS)
463         \@echo Linking \$\@
464         \@\$(LD) \$(LD_FLAGS) -o \$\@ \\
465                 \$\(BINARY_$ctx->{NAME}_LINK_FLAGS) \\
466                 \$\(BINARY_$ctx->{NAME}_LINK_LIST) \\
467                 \$\(BINARY_$ctx->{NAME}_LINK_FLAGS)
468 binary_$ctx->{BINARY}: basics bin/$ctx->{BINARY}
469
470 __EOD__
471
472         return $output;
473 }
474
475 sub _prepare_custom_rule($)
476 {
477         my $ctx = shift;
478         return "$ctx->{NAME}:\n\t$ctx->{CMD}\n";
479 }
480
481 sub _prepare_proto_rules()
482 {
483         my $output = "";
484
485         $output .= << '__EOD__';
486 # Making this target will just make sure that the prototype files
487 # exist, not necessarily that they are up to date.  Since they're
488 # removed by 'make clean' this will always be run when you do anything
489 # afterwards.
490 proto_exists: include/proto.h include/build_env.h
491
492 delheaders: pch_clean
493         -rm -f $(builddir)/include/proto.h $(builddir)/include/build_env.h:
494
495 include/proto.h:
496         @cd $(srcdir) && $(SHELL) script/mkproto.sh "$(PERL)" \
497           -h _PROTO_H_ $(builddir)/include/proto.h \
498           $(PROTO_PROTO_OBJS)
499
500 include/build_env.h:
501         @echo Building include/build_env.h
502         @cd $(srcdir) && $(SHELL) script/build_env.sh $(srcdir) $(builddir) $(CC) > $(builddir)/include/build_env.h
503
504 # 'make headers' or 'make proto' calls a subshell because we need to
505 # make sure these commands are executed in sequence even for a
506 # parallel make.
507 headers: delheaders proto_exists
508
509 proto: idl headers
510
511 proto_test:
512         @[ -f $(builddir)/include/proto.h ] || $(MAKE) proto
513
514 clean: delheaders
515         -rm -f *.o */*.o */*/*.o */*/*/*.o bin/*
516         -rm -rf librpc/gen_*
517
518 distclean: clean
519         -rm -f bin/.dummy
520         -rm -f include/config.h 
521         -rm -f Makefile*
522         -rm -f config.status
523         -rm -f config.smb_build.*
524         -rm -f config.log config.cache
525
526 removebackup:
527         -rm -f *.bak *~ */*.bak */*~ */*/*.bak */*/*~ */*/*/*.bak */*/*/*~
528
529 realdistclean: distclean removebackup
530         -rm -f include/config.h.in
531         -rm -f lib/version.h
532         -rm -f configure
533 __EOD__
534
535         return $output;
536 }
537
538 sub _prepare_make_target($)
539 {
540         my $ctx = shift;
541         my $tmpdepend;
542         my $output;
543
544         $tmpdepend = array2oneperline($ctx->{DEPEND_LIST});
545
546         return << "__EOD__";
547 $ctx->{TARGET}: basics $tmpdepend
548
549 __EOD__
550 }
551
552 sub _prepare_target_settings($)
553 {
554         my $CTX = shift;
555         my $output = "";
556
557         foreach my $key (values %$CTX) {
558                 if (defined($key->{OBJ_LIST})) {
559                         $output .= _prepare_obj_list($key->{TYPE}, $key);
560                 }
561
562                 if (defined($key->{OBJ_LIST})) {
563                         $output .= _prepare_cflags($key->{TYPE}, $key);
564                 }
565         }
566
567         return $output;
568 }
569
570 sub _prepare_install_rules($)
571 {
572         my $CTX = shift;
573         my $output = "";
574
575         $output .= << '__EOD__';
576
577 showlayout: 
578         @echo "Samba will be installed into:"
579         @echo "  basedir: $(BASEDIR)"
580         @echo "  bindir:  $(BINDIR)"
581         @echo "  sbindir: $(SBINDIR)"
582         @echo "  libdir:  $(LIBDIR)"
583         @echo "  vardir:  $(VARDIR)"
584         @echo "  privatedir:  $(PRIVATEDIR)"
585         @echo "  piddir:  $(PIDDIR)"
586         @echo "  lockdir:  $(LOCKDIR)"
587         @echo "  swatdir:  $(SWATDIR)"
588
589 showflags:
590         @echo "Samba will be compiled with flags:"
591         @echo "  CFLAGS = $(CFLAGS)"
592         @echo "  LD_FLAGS = $(LD_FLAGS)"
593         @echo "  STLD_FLAGS = $(STLD_FLAGS)"
594         @echo "  SHLD_FLAGS = $(SHLD_FLAGS)"
595
596 SBIN_PROGS = bin/smbd
597
598 BIN_PROGS = bin/smbclient \
599                 bin/net \
600                 bin/nmblookup \
601                 bin/ntlm_auth
602
603 TORTURE_PROGS = bin/smbtorture \
604                 bin/gentest \
605                 bin/locktest \
606                 bin/masktest \
607                 bin/ndrdump
608
609 LDB_PROGS =     bin/ldbadd \
610                 bin/ldbdel \
611                 bin/ldbmodify \
612                 bin/ldbedit \
613                 bin/ldbsearch
614
615 REG_PROGS =     bin/regpatch \
616                 bin/regshell \
617                 bin/regtree \
618                 bin/regpatch \
619                 bin/regdiff
620
621 install: showlayout installbin installtorture installldb installreg installdat installswat
622
623 # DESTDIR is used here to prevent packagers wasting their time
624 # duplicating the Makefile. Remove it and you will have the privelege
625 # of package each samba release for muliple versions of multiple
626 # distributions and operating systems, or at least supplying patches
627 # to all the packaging files required for this, prior to committing
628 # the removal of DESTDIR. Do not remove it even though you think it
629 # is not used
630
631 installdirs:
632         @$(SHELL) $(srcdir)/script/installdirs.sh $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(SBINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(DESTDIR)$(PRIVATEDIR) $(DESTDIR)$(PIDDIR) $(DESTDIR)$(LOCKDIR) $(DESTDIR)$(PRIVATEDIR)/tls
633
634 installbin: all installdirs
635         @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(SBINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(SBIN_PROGS)
636         @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(BIN_PROGS)
637
638 installtorture: all installdirs
639         @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(TORTURE_PROGS)
640
641 installldb: all installdirs
642         @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(LDB_PROGS)
643
644 installreg: all installdirs
645         @$(SHELL) $(srcdir)/script/installbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(REG_PROGS)
646
647 installdat: installdirs
648         @$(SHELL) $(srcdir)/script/installdat.sh $(DESTDIR)$(LIBDIR) $(srcdir)
649
650 installswat: installdirs
651         @$(SHELL) $(srcdir)/script/installswat.sh $(DESTDIR)$(SWATDIR) $(srcdir)
652
653 uninstall: uninstallbin uninstalltorture uninstallldb uninstallreg
654
655 uninstallbin:
656         @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(SBINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(DESTDIR)$(SBIN_PROGS)
657
658 uninstalltorture:
659         @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(DESTDIR)$(TORTURE_PROGS)
660
661 uninstallldb:
662         @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(DESTDIR)$(LDB_PROGS)
663
664 uninstallreg:
665         @$(SHELL) $(srcdir)/script/uninstallbin.sh $(INSTALLPERMS) $(DESTDIR)$(BASEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(VARDIR) $(DESTDIR)$(REG_PROGS)
666
667 # Swig extensions
668
669 swig: scripting/swig/_tdb.so scripting/swig/_dcerpc.so
670
671 scripting/swig/tdb_wrap.c: scripting/swig/tdb.i
672         swig -python scripting/swig/tdb.i
673
674 scripting/swig/_tdb.so: scripting/swig/tdb_wrap.o $(LIBRARY_swig_tdb_DEPEND_LIST)
675         $(SHLD) $(SHLD_FLAGS) -o scripting/swig/_tdb.so scripting/swig/tdb_wrap.o \
676                 $(LIBRARY_swig_tdb_SHARED_LINK_LIST) $(LIBRARY_swig_tdb_SHARED_LINK_FLAGS)
677
678 SWIG_INCLUDES = librpc/gen_ndr/samr.i librpc/gen_ndr/lsa.i librpc/gen_ndr/spoolss.i
679
680 scripting/swig/dcerpc_wrap.c: scripting/swig/dcerpc.i scripting/swig/samba.i scripting/swig/status_codes.i $(SWIG_INCLUDES)
681         swig -python scripting/swig/dcerpc.i
682
683 scripting/swig/_dcerpc.so: scripting/swig/dcerpc_wrap.o $(LIBRARY_swig_dcerpc_DEPEND_LIST)
684         $(SHLD) $(SHLD_FLAGS) -o scripting/swig/_dcerpc.so scripting/swig/dcerpc_wrap.o $(LIBRARY_swig_dcerpc_SHARED_LINK_LIST) $(LIBRARY_swig_dcerpc_SHARED_LINK_FLAGS)
685
686 swig_clean:
687         -rm -f scripting/swig/_tdb.so scripting/swig/tdb.pyc \
688                 scripting/swig/tdb.py scripting/swig/tdb_wrap.c \
689                 scripting/swig/tdb_wrap.o
690
691 everything: all
692
693 etags:
694         etags `find $(srcdir) -name "*.[ch]"`
695
696 ctags:
697         ctags `find $(srcdir) -name "*.[ch]"`
698
699 __EOD__
700
701         return $output;
702 }
703
704 sub _prepare_rule_lists($)
705 {
706         my $depend = shift;
707         my $output = "";
708
709         foreach my $key (values %{$depend}) {
710                 next if not defined $key->{OUTPUT_TYPE};
711
712                 ($output .= _prepare_objlist_rule($key)) if $key->{OUTPUT_TYPE} eq "OBJLIST";
713                 ($output .= _prepare_static_library_rule($key)) if $key->{OUTPUT_TYPE} eq "STATIC_LIBRARY";
714                 ($output .= _prepare_shared_library_rule($key)) if $key->{OUTPUT_TYPE} eq "SHARED_LIBRARY";
715                 ($output .= _prepare_binary_rule($key)) if $key->{OUTPUT_TYPE} eq "BINARY";
716                 ($output .= _prepare_custom_rule($key) ) if $key->{TYPE} eq "TARGET";
717         }
718
719         my $idl_ctx;
720         $output .= _prepare_IDL($idl_ctx);
721
722         $output .= _prepare_proto_rules();
723
724         $output .= _prepare_install_rules($depend);
725
726         return $output;
727 }
728
729 ###########################################################
730 # This function prepares the output for Makefile
731 #
732 # $output = _prepare_makefile_in($OUTPUT)
733 #
734 # $OUTPUT -     the global OUTPUT context
735 #
736 # $output -             the resulting output buffer
737 sub _prepare_makefile_in($)
738 {
739         my $CTX = shift;
740         my $output;
741
742         $output  = "########################################\n";
743         $output .= "# Autogenerated by config.smb_build.pl #\n";
744         $output .= "########################################\n";
745         $output .= "\n";
746
747         my $cmd_ctx;
748         $output .= _prepare_command_interpreters($cmd_ctx);
749
750         my $path_ctx;
751         $output .= _prepare_path_vars($path_ctx);
752
753         my $compiler_ctx;
754         $output .= _prepare_compiler_linker($compiler_ctx);
755
756         my $rules_ctx;
757         $output .= _prepare_default_rule($rules_ctx);
758
759         my $suffix_ctx;
760         $output .= _prepare_SUFFIXES($suffix_ctx);
761
762         $output .= _prepare_dummy_MAKEDIR();
763
764         $output .= _prepare_std_CC_rule("c","o",'@PICFLAG@',"Compiling","Rule for std objectfiles");
765         $output .= _prepare_std_CC_rule("h","h.gch",'@PICFLAG@',"Precompiling","Rule for precompiled headerfiles");
766
767         $output .= _prepare_target_settings($CTX);
768
769         $output .= _prepare_rule_lists($CTX);
770
771         my @all = ();
772         
773         foreach my $part (values %{$CTX}) {
774                 push (@all, $part->{TARGET}) if defined ($part->{OUTPUT_TYPE}) and $part->{OUTPUT_TYPE} eq "BINARY";    
775         }
776         
777         $output .= _prepare_make_target({ TARGET => "all", DEPEND_LIST => \@all });
778
779         return $output;
780 }
781
782 ###########################################################
783 # This function creates Makefile.in from the OUTPUT 
784 # context
785 #
786 # create_makefile_in($OUTPUT)
787 #
788 # $OUTPUT       -       the global OUTPUT context
789 #
790 # $output -             the resulting output buffer
791 sub create_makefile_in($$)
792 {
793         my $CTX = shift;
794         my $file = shift;
795
796         open(MAKEFILE_IN,">$file") || die ("Can't open $file\n");
797         print MAKEFILE_IN _prepare_makefile_in($CTX);
798         close(MAKEFILE_IN);
799
800         print "config.smb_build.pl: creating $file\n";
801         return; 
802 }
803
804 1;