Avoid autogenerating the Makefile but rather include a data.mk file
[ira/wip.git] / source4 / rules.mk
1 # Dependencies command
2 DEPENDS = $(CC) -M -MG -MP -MT $(<:.c=.o) -MT $@ \
3     $(CFLAGS) `$(PERL) $(srcdir)/script/cflags.pl $@` \
4     $(CPPFLAGS) $(FIRST_PREREQ) -o $@
5 # Dependencies for host objects
6 HDEPENDS = $(CC) -M -MG -MP -MT $(<:.c=.ho) -MT $@ \
7     $(HOSTCC_FLAGS) `$(PERL) $(srcdir)/script/cflags.pl $@` \
8     $(CPPFLAGS) $(FIRST_PREREQ) -o $@
9 # Dependencies for precompiled headers
10 PCHDEPENDS = $(CC) -M -MG -MT include/includes.h.gch -MT $@ \
11     $(CFLAGS) $(CPPFLAGS) $(FIRST_PREREQ) -o $@
12
13 # $< is broken in older BSD versions:
14 # when $@ is foo/bar.o, $< could be torture/foo/bar.c
15 # if it also exists. So better use $* which is foo/bar
16 # and append .c manually to get foo/bar.c
17 #
18 # If we have GNU Make, it is safe to use $<, which also lets
19 # building with $srcdir != $builddir work.
20
21 # Run a static analysis checker
22 CHECK = $(CC_CHECKER) $(CFLAGS) `$(PERL) $(srcdir)/script/cflags.pl $@` \
23     $(PICFLAG) $(CPPLAGS) -c $(FIRST_PREREQ) -o $@
24
25 # Run the configured compiler
26 COMPILE = $(CC) $(CFLAGS) $(PICFLAG) \
27           `$(PERL) $(srcdir)/script/cflags.pl $@` \
28                   $(CPPFLAGS) \
29                   -c $(FIRST_PREREQ) -o $@
30
31 # Run the compiler for the build host
32 HCOMPILE = $(HOSTCC) $(HOSTCC_FLAGS) `$(PERL) $(srcdir)/script/cflags.pl $@` \
33          $(CPPFLAGS) -c $(FIRST_PREREQ) -o $@
34
35 # Precompile headers
36 PCHCOMPILE = @$(CC) -Ilib/replace \
37     $(CFLAGS) `$(PERL) $(srcdir)/script/cflags.pl $@` \
38     $(PICFLAG) $(CPPFLAGS) -c $(FIRST_PREREQ) -o $@
39
40 include/config.h:
41         @echo "include/config.h not present"
42         @echo "You need to rerun ./autogen.sh and ./configure"
43         @/bin/false
44
45 $(srcdir)/version.h: $(srcdir)/VERSION
46         @$(SHELL) script/mkversion.sh VERSION $(srcdir)/version.h $(srcdir)/
47
48 regen_version::
49         @$(SHELL) script/mkversion.sh VERSION $(srcdir)/version.h $(srcdir)/
50
51 clean_pch::
52         @echo "Removing precompiled headers"
53         @-rm -f include/includes.h.gch
54
55 pch:: clean_pch include/includes.h.gch
56
57 clean:: clean_pch
58         @echo Removing objects
59         @-find . -name '*.o' -exec rm -f '{}' \;
60         @echo Removing hostcc objects
61         @-find . -name '*.ho' -exec rm -f '{}' \;
62         @echo Removing binaries
63         @-rm -f $(BIN_PROGS) $(SBIN_PROGS) $(BINARIES) $(TORTURE_PROGS)
64         @echo Removing libraries
65         @-rm -f $(STATIC_LIBRARIES) $(SHARED_LIBRARIES)
66         @-rm -f bin/static/*.a bin/shared/*.$(SHLIBEXT)
67         @echo Removing modules
68         @-rm -f bin/modules/*/*.$(SHLIBEXT)
69         @-rm -f bin/*_init_module.c
70         @echo Removing dummy targets
71         @-rm -f bin/.*_*
72         @echo Removing generated files
73         @-rm -f bin/*_init_module.c
74         @-rm -rf librpc/gen_* 
75         @echo Removing proto headers
76         @-rm -f $(PROTO_HEADERS)
77
78 distclean:: clean
79         -rm -f include/config.h include/config_tmp.h include/build.h
80         -rm -f config.status
81         -rm -f config.log config.cache
82         -rm -f config.pm config.mk
83         -rm -f $(PC_FILES)
84
85 removebackup::
86         -rm -f *.bak *~ */*.bak */*~ */*/*.bak */*/*~ */*/*/*.bak */*/*/*~
87
88 realdistclean:: distclean removebackup
89         -rm -f include/config_tmp.h.in
90         -rm -f version.h
91         -rm -f configure
92         -rm -f $(MANPAGES)
93
94 check:: test
95
96 unused_macros:
97         $(srcdir)/script/find_unused_macros.pl `find . -name "*.[ch]"` | sort
98
99 ###############################################################################
100 # File types
101 ###############################################################################
102
103 .SUFFIXES: .x .c .et .y .l .d .o .h .h.gch .a .$(SHLIBEXT) .1 .1.xml .3 .3.xml .5 .5.xml .7 .7.xml .8 .8.xml .ho .idl .hd
104
105 .c.d:
106         @echo "Generating dependencies for $<"
107         @$(DEPENDS)
108
109 .c.hd:
110         @echo "Generating host-compiler dependencies for $<"
111         @$(HDEPENDS)
112
113 include/includes.d: include/includes.h
114         @echo "Generating dependencies for $<"
115         @$(PCHDEPENDS)
116
117 .c.o:
118         @if test -n "$(CC_CHECKER)"; then \
119                 echo "Checking  $< with '$(CC_CHECKER)'"; \
120                 $(CHECK) ; \
121         fi
122         @echo "Compiling $<"
123         @-mkdir -p `dirname $@`
124         @$(COMPILE) && exit 0 ; \
125                 echo "The following command failed:" 1>&2;\
126                 echo "$(COMPILE)" 1>&2;\
127                 $(COMPILE) >/dev/null 2>&1
128
129 .c.ho:
130         @echo "Compiling $< with host compiler"
131         @-mkdir -p `dirname $@`
132         @$(HCOMPILE) && exit 0;\
133                 echo "The following command failed:" 1>&2;\
134                 echo "$(HCOMPILE)" 1>&2;\
135                 $(HCOMPILE) >/dev/null 2>&1
136
137 .h.h.gch:
138         @echo "Precompiling $<"
139         @$(PCHCOMPILE)
140
141 .y.c:
142         @echo "Building $< with $(YACC)"
143         @-$(srcdir)/script/yacc_compile.sh "$(YACC)" "$<" "$@"
144
145 .l.c:
146         @echo "Building $< with $(LEX)"
147         @-$(srcdir)/script/lex_compile.sh "$(LEX)" "$<" "$@"
148
149 DOCBOOK_MANPAGE_URL = http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
150
151 .1.xml.1:
152         $(XSLTPROC) -o $@ $(DOCBOOK_MANPAGE_URL) $<
153
154 .3.xml.3:
155         $(XSLTPROC) -o $@ $(DOCBOOK_MANPAGE_URL) $<
156
157 .5.xml.5:
158         $(XSLTPROC) -o $@ $(DOCBOOK_MANPAGE_URL) $<
159
160 .7.xml.7:
161         $(XSLTPROC) -o $@ $(DOCBOOK_MANPAGE_URL) $<
162
163 .8.xml.8:
164         $(XSLTPROC) -o $@ $(DOCBOOK_MANPAGE_URL) $<
165
166 DEP_FILES = $(patsubst %.ho,%.hd,$(patsubst %.o,%.d,$(ALL_OBJS))) \
167                    include/includes.d
168
169 dist:: idl_full manpages configure distclean 
170
171 configure: 
172         ./autogen.sh
173
174 showflags::
175         @echo 'Samba will be compiled with flags:'
176         @echo '  CPP        = $(CPP)'
177         @echo '  CPPFLAGS   = $(CPPFLAGS)'
178         @echo '  CC         = $(CC)'
179         @echo '  CFLAGS     = $(CFLAGS)'
180         @echo '  PICFLAG    = $(PICFLAG)'
181         @echo '  BNLD       = $(BNLD)'
182         @echo '  BNLD_FLAGS = $(BNLD_FLAGS)'
183         @echo '  STLD       = $(STLD)'
184         @echo '  STLD_FLAGS = $(STLD_FLAGS)'
185         @echo '  SHLD       = $(SHLD)'
186         @echo '  SHLD_FLAGS = $(SHLD_FLAGS)'
187         @echo '  MDLD       = $(MDLD)'
188         @echo '  MDLD_FLAGS = $(MDLD_FLAGS)'
189         @echo '  SHLIBEXT   = $(SHLIBEXT)'
190
191 etags:
192         etags `find $(srcdir) -name "*.[ch]"`
193
194 ctags:
195         ctags `find $(srcdir) -name "*.[ch]"`