]> andersk Git - moira.git/blob - util/imake.includes/Imake.rules
Added support for DEBUG_LIBS so that when this is defined
[moira.git] / util / imake.includes / Imake.rules
1 /**/#   $Source$
2 /**/#   $Author$
3 /**/#   $Header$
4 /**/#
5
6 #ifdef __STDC__
7 #define concat(x,y) x##y
8 #define concat3(x,y,z) x##y##z
9 #define concat4(w,x,y,z) w##x##y##z
10 #define concat5(v,w,x,y,z) v##w##x##y##z
11 #define requote(x) #x
12 #else
13 #define concat(x,y)x/**/y
14 #define concat3(x,y,z)x/**/y/**/z
15 #define concat4(w,x,y,z)w/**/x/**/y/**/z
16 #define concat5(v,w,x,y,z)v/**/w/**/x/**/y/**/z
17 #define requote(x) "x"
18 #endif
19
20 #ifdef PROFILED_LIBS
21 /*
22  * Rule for building objects in libraries.
23  */
24
25 #define library_obj_rule()                                              @@\
26 .c.o:                                                                   @@\
27         $(CC) PROF_FLAG -c $(CFLAGS) $*.c                               @@\
28         -$(LD) -X -r -o profiled/$*.o $*.o                              @@\
29         $(CC) -c $(CFLAGS) $*.c                                         @@\
30         -$(LD) -x -r -o a.out $*.o                                      @@\
31         $(MV) a.out $*.o
32
33 /*
34  * cc -R breaks profiling with -p on 4.3BSD on the VAX 
35  * (and probably elsewhere), so we don't do it for the profiled version.
36  */
37
38 #define library_ro_object(cfile)                                        @@\
39 concat(cfile,.o): concat(cfile,.c)                                      @@\
40         $(CC) PROF_FLAG -c $(CFLAGS) concat(cfile,.c)                   @@\
41         -$(LD) -X -r -o profiled/$*.o $*.o                              @@\
42         $(CCRO) -c $(CFLAGS) concat(cfile,.c)                           @@\
43         -$(LD) -x -r -o a.out $*.o                                      @@\
44         $(MV) a.out $*.o
45
46 #define library_asm_object(ofile,sfile)                                 @@\
47 ofile: sfile                                                            @@\
48         $(CP) sfile x.c                                                 @@\
49         $(CPP) -DPROF x.c | $(AS) -                                     @@\
50         -$(LD) -X -r -o profiled/$*.o a.out                             @@\
51         $(CPP) x.c | $(AS) -                                            @@\
52         -$(LD) -x -r -o $*.o a.out                                      @@\
53         $(RM) a.out x.c
54
55 #define install_library_target(libname,objs,srcs,lintlibs)              @@\
56                                                                         @@\
57 all:: concat3(lib,libname,.a) concat3(lib,libname,_p.a)                 @@\
58 all:: concat3(llib-l,libname,.ln)                                       @@\
59                                                                         @@\
60 concat3(lib,libname,.a): objs                                           @@\
61         $(RM) $@.bak                                                    @@\
62         -$(MV) $@ $@.bak                                                @@\
63         $(ARCHIVE) $@ objs                                              @@\
64         $(RANLIB) $@                                                    @@\
65                                                                         @@\
66 concat3(lib,libname,_p.a): objs                                         @@\
67         $(RM) $@.bak                                                    @@\
68         -$(MV) $@ $@.bak                                                @@\
69         cd profiled; $(ARCHIVE) ../$@ objs                              @@\
70         $(RANLIB) $@                                                    @@\
71                                                                         @@\
72 lint:: concat3(llib-l,libname,.ln)                                      @@\
73                                                                         @@\
74 concat3(llib-l,libname,.ln): srcs                                       @@\
75         $(LINT) concat($(LINTLIBFLAG),libname) $(LINTFLAGS) srcs lintlibs               @@\
76                                                                         @@\
77 clean::                                                                 @@\
78         $(RM) concat3(lib,libname,.a) concat3(lib,libname,_p.a)         @@\
79         $(RM) concat3(llib-l,libname,.ln)                               @@\
80         $(RM) objs                                                      @@\
81         $(RM) profiled/?*.o                                             @@\
82                                                                         @@\
83 install::                                                               @@\
84         $(INSTALLRAW) -c -m 644 concat3(lib,libname,.a) concat4($(DESTDIR)$(LIBDIR)/,lib,libname,.a)    @@\
85         $(RANLIB) -t concat4($(DESTDIR)$(LIBDIR)/,lib,libname,.a)       @@\
86         $(CHMOD) 444 concat4($(DESTDIR)$(LIBDIR)/,lib,libname,.a)       @@\
87         $(INSTALLRAW) -c -m 644 concat3(lib,libname,_p.a) concat4($(DESTDIR)$(LIBDIR)/,lib,libname,_p.a)        @@\
88         $(RANLIB) -t concat4($(DESTDIR)$(LIBDIR)/,lib,libname,_p.a)     @@\
89         $(CHMOD) 444 concat4($(DESTDIR)$(LIBDIR)/,lib,libname,_p.a)     @@\
90         $(INSTALLFILE) concat3(llib-l,libname,.ln) concat4($(DESTDIR)$(LINTLIBDIR)/,llib-l,libname,.ln) @@\
91
92 #else /* !PROFILED_LIBS */
93 /*
94  * Rule for building objects in libraries.
95  */
96
97 #ifdef DEBUG_LIBS
98 /* When debugging, leave symbols alone (don't do LD) */
99 #define library_obj_rule()                                              @@\
100 .c.o:                                                                   @@\
101         $(CC) -c $(CFLAGS) $*.c
102 #else
103 #define library_obj_rule()                                              @@\
104 .c.o:                                                                   @@\
105         $(CC) -c $(CFLAGS) $*.c                                         @@\
106         -$(LD) -x -r -o a.out $*.o                                      @@\
107         $(MV) a.out $*.o
108 #endif
109
110 #define library_ro_object(cfile)                                        @@\
111 concat(cfile,.o): concat(cfile,.c)                                      @@\
112         $(CCRO) -c $(CFLAGS) concat(cfile,.c)                           @@\
113         -$(LD) -x -r -o a.out $*.o                                      @@\
114         $(MV) a.out $*.o
115
116 #define library_asm_object(ofile,sfile)                                 @@\
117 ofile: sfile                                                            @@\
118         $(CPP) x.c | $(AS) -                                            @@\
119         -$(LD) -x -r -o $*.o a.out                                      @@\
120         $(RM) a.out x.c
121
122 #define install_library_target(libname,objs,srcs,lintlibs)              @@\
123                                                                         @@\
124 all:: concat3(lib,libname,.a)                                           @@\
125 all:: concat3(llib-l,libname,.ln)                                       @@\
126                                                                         @@\
127 concat3(lib,libname,.a): objs                                           @@\
128         $(RM) $@.bak                                                    @@\
129         -$(MV) $@ $@.bak                                                @@\
130         $(ARCHIVE) $@ objs                                              @@\
131         $(RANLIB) $@                                                    @@\
132                                                                         @@\
133 lint:: concat3(llib-l,libname,.ln)                                      @@\
134                                                                         @@\
135 concat3(llib-l,libname,.ln): srcs                                       @@\
136         $(LINT) concat($(LINTLIBFLAG),libname) $(LINTFLAGS) srcs lintlibs               @@\
137                                                                         @@\
138 clean::                                                                 @@\
139         $(RM) concat3(lib,libname,.a)                                   @@\
140         $(RM) concat3(llib-l,libname,.ln)                               @@\
141         $(RM) objs                                                      @@\
142                                                                         @@\
143 install::                                                               @@\
144         $(INSTALLRAW) -c -m 644 concat3(lib,libname,.a) concat4($(DESTDIR)$(LIBDIR)/,lib,libname,.a)    @@\
145         $(RANLIB) -t concat4($(DESTDIR)$(LIBDIR)/,lib,libname,.a)       @@\
146         $(CHMOD) 444 concat4($(DESTDIR)$(LIBDIR)/,lib,libname,.a)       @@\
147         $(INSTALLFILE) concat3(llib-l,libname,.ln) concat4($(DESTDIR)$(LINTLIBDIR)/,llib-l,libname,.ln) @@\
148
149 #endif /* PROFILED_LIBS */
150
151 /*
152  * Rule for building utilities (binaries which don't get installed)
153  */
154 #define genutil(pgm,objs,localdeps,syslibs)                             @@\
155 all:: pgm                                                               @@\
156                                                                         @@\
157 pgm: objs localdeps                                                     @@\
158         $(CC) $(CFLAGS) -o $@ objs syslibs                              @@\
159                                                                         @@\
160 clean::                                                                 @@\
161         $(RM) pgm objs                                                  @@\
162
163 /*
164  * Rule for building "generator" programs.
165  */
166
167 #define generate(file,pgm,libs)                                         @@\
168                                                                         @@\
169 pgm: concat(pgm,.c) libs                                                @@\
170         $(HCC) $(HCFLAGS) -o $@ $@.c libs                               @@\
171                                                                         @@\
172 file: pgm                                                               @@\
173         ./pgm file                                                      @@\
174                                                                         @@\
175 clean::                                                                 @@\
176         $(RM) file pgm concat(pgm,.o)                                   
177
178 #define generate_depend(file,pgm,libs)                                  @@\
179         generate(file,pgm,libs)                                         @@\
180                                                                         @@\
181 depend:: file
182
183
184 /*
185  * Rule for building test programs (something which is not installed)
186  */
187
188 #define test(pgm,locallibs,syslibs)                                     @@\
189                                                                         @@\
190 all:: pgm                                                               @@\
191                                                                         @@\
192 pgm: concat(pgm,.c) locallibs                                           @@\
193         $(CC) $(CFLAGS) -o $@ $@.c locallibs syslibs                    @@\
194                                                                         @@\
195 clean::                                                                 @@\
196         $(RM) pgm concat(pgm,.o)                                        @@\
197
198 /* 
199  * Rule for compileing files with "et"
200  */
201
202 #ifdef PROFILED_LIBS
203 #define comp_et_prof(tbl)                                               @@\
204 concat(tbl,.h) concat(tbl,.o): concat(tbl,.et)                          @@\
205         $(COMPILE_ET) concat(tbl,.et) -n                                @@\
206         $(CC) -c PROF_FLAG concat(tbl,.et.c)                            @@\
207         $(MV) concat(tbl,.et.o) concat3(profiled/,tbl,.o)               @@\
208         $(COMPILE_ET) concat(tbl,.et)                                   @@\
209 clean::                                                                 @@\
210         $(RM) concat(src,.o) concat(src,.h)                             @@\
211 depend:: concat(src,.h)
212 #else /* !PROFILED_LIBS */
213 #define comp_et_prof(tbl) comp_et(tbl)
214 #endif /* PROFILED_LIBS */
215
216 #define comp_et(tbl)                                                    @@\
217 concat(tbl,.h) concat(tbl,.o): concat(tbl,.et)                          @@\
218         $(COMPILE_ET) concat(tbl,.et)                                   @@\
219 clean::                                                                 @@\
220         $(RM) concat(src,.o) concat(src,.h)
221
222 #define comp_et_depend(src)                                             @@\
223         comp_et(src)                                                    @@\
224                                                                         @@\
225 depend:: concat(src,.h)
226
227 #define mk_cmds(tbl)                                                    @@\
228 concat(tbl,.o): concat(tbl,.ct)                                         @@\
229         $(MAKE_COMMANDS) concat(tbl,.ct)                                @@\
230 clean::                                                                 @@\
231         $(RM) concat(src,.o)
232
233 /*
234  * Rule for building some random object module
235  */
236
237 #define host_simple_object(obj,src)                                     @@\
238 obj:    src                                                             @@\
239         $(HCC) $(HCFLAGS) -c src                                        @@\
240                                                                         @@\
241 clean::                                                                 @@\
242         $(RM) obj                                                       @@\
243
244 #define ro_object(obj,src)                                              @@\
245 obj:    src                                                             @@\
246         $(CCRO) $(CFLAGS) -c src                                        @@\
247                                                                         @@\
248 clean::                                                                 @@\
249         $(RM) obj                                                       @@\
250         
251 /*
252  * Rule for building some random object module with compile flags and
253  * other dependendcies
254  */
255
256 #define host_flag_object(obj,src,flags,localdeps)                       @@\
257 obj:    src localdeps                                                   @@\
258         $(HCC) $(HCFLAGS) flags -c src                                  @@\
259                                                                         @@\
260 clean::                                                                 @@\
261         $(RM) obj                                                       @@\
262
263 #define ro_flag_object(obj,src,flags,localdeps)                         @@\
264 obj:    src localdeps                                                   @@\
265         $(CCRO) $(CFLAGS) flags -c src                                  @@\
266                                                                         @@\
267 clean::                                                                 @@\
268         $(RM) obj                                                       @@\
269         
270 /*
271  * Rule for building some random object module with compile flags, an
272  * intermediate output, and some other dependencies
273  */
274
275 #define host_cplx_object(obj,interim,src,flags,localdeps)               @@\
276 obj:    interim src localdeps                                           @@\
277         $(HCC) $(HCFLAGS) flags -c src                                  @@\
278         $(MV) interim obj                                               @@\
279                                                                         @@\
280 clean::                                                                 @@\
281         $(RM) obj                                                       @@\
282
283 #define ro_cplx_object(obj,interim,src,flags,localdeps)                 @@\
284 obj:    src localdeps interim                                           @@\
285         $(CCRO) $(CFLAGS) flags -c src                                  @@\
286         $(MV) interim obj                                               @@\
287                                                                         @@\
288 clean::                                                                 @@\
289         $(RM) obj                                                       @@\
290         
291 /*
292  * Rule for building a program which is to be installed:
293  */
294
295 #define program(pgm,objs,localdeps,syslibs,installdir)                  @@\
296 all:: pgm                                                               @@\
297                                                                         @@\
298 pgm: localdeps objs                                                     @@\
299         $(CC) $(CFLAGS) -o $@ objs syslibs                              @@\
300                                                                         @@\
301 install::                                                               @@\
302         $(INSTALLPROG) pgm ${DESTDIR}installdir/pgm                     @@\
303                                                                         @@\
304 clean::                                                                 @@\
305         $(RM) pgm objs                                                  @@\
306
307 /*
308  * Rule for building a program which is to be installed setuid root:
309  */
310
311 #define suidprogram(pgm,objs,localdeps,syslibs,installdir)              @@\
312 all:: pgm                                                               @@\
313                                                                         @@\
314 pgm: objs localdeps                                                     @@\
315         $(CC) $(CFLAGS) -o $@ objs syslibs                              @@\
316                                                                         @@\
317 install::                                                               @@\
318         $(INSTALLSUID) pgm ${DESTDIR}installdir/pgm                     @@\
319                                                                         @@\
320 clean::                                                                 @@\
321         $(RM) pgm objs                                                  @@\
322
323 /*
324  * Rule for building a specially installed program
325  */
326
327 #define program_spinst(pgm,objs,localdeps,syslibs,installdir,instopts)  @@\
328 all:: pgm                                                               @@\
329                                                                         @@\
330 pgm: objs localdeps                                                     @@\
331         $(CC) $(CFLAGS) -o $@ objs syslibs                              @@\
332                                                                         @@\
333 install::                                                               @@\
334         $(INSTALLRAW) instopts pgm ${DESTDIR}installdir/pgm             @@\
335                                                                         @@\
336 clean::                                                                 @@\
337         $(RM) pgm objs                                                  @@\
338
339 /*
340  * Special rule for building and installing a Berkeley r-command
341  * We need to preserve the original copies upon installation.
342  */
343
344 #define ucbprogram(pgm,objs,localdeps,syslibs,installdir)               @@\
345 all:: pgm                                                               @@\
346                                                                         @@\
347 pgm: objs localdeps                                                     @@\
348         $(CC) $(CFLAGS) -o $@ objs syslibs                              @@\
349                                                                         @@\
350 install::                                                               @@\
351         -if [ ! -f concat5(${DESTDIR},installdir,/,pgm,.ucb) -a -f concat4(${DESTDIR},installdir,/,pgm) ]; then \ @@\
352                 mv concat4(${DESTDIR},installdir,/,pgm) concat5(${DESTDIR},installdir,/,pgm,.ucb); fi; exit 0 @@\
353         $(INSTALLSUID) pgm concat4(${DESTDIR},installdir,/,pgm)         @@\
354                                                                         @@\
355 clean::                                                                 @@\
356         $(RM) pgm objs                                                  @@\
357
358
359 /*
360  * Rule for installing man pages.  Section installing into should match
361  * suffix, or the man page won't show up when using man(1).
362  */
363
364 #define manpage(section,page)                                           @@\
365 all::                                                                   @@\
366 install:: page                                                          @@\
367         $(INSTALLFILE) page concat4(${DESTDIR}${MANDIR}/man,section,/,`basename page`) @@\
368
369 /*
370  * Rule for building makefile dependencies.
371  */
372
373 #define depend_target()                                                 @@\
374 depend:: $(SRCS)                                                        @@\
375         @echo "### Now computing dependencies"                          @@\
376         @$(DEPEND) -s "# DO NOT DELETE" -- $(CFLAGS) -- $(SRCS)         @@\
377
378 #define clean_target()                                                  @@\
379 clean::                                                                 @@\
380         $(RM) *~ \#* *.bak $(TAGSFILE)                          
381
382 #define tags_target()                                                   @@\
383 tags::                                                                  @@\
384         $(TAGGER) *.c *.h
385
386 #define makefile_target()                                               @@\
387 Makefile::                                                              @@\
388         -$(RM) Makefile.bak; $(MV) Makefile Makefile.bak                @@\
389         $(IMAKE) -DNEW_TOP=$(NEWTOP) -s Makefile                        @@\
390
391 #define foreach_subdirs(name,subdirs)                                   @@\
392 name::                                                                  @@\
393         @for d in subdirs; \                                            @@\
394         do \                                                            @@\
395                 (cd $$d; echo "### Making" name "in" `pwd`;     \       @@\
396                         $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) name ; \   @@\
397                         echo "### Done with" `pwd`);            \       @@\
398         done
399
400 #define print_target()                                                  @@\
401 print:: ${CODE}                                                         @@\
402         ${LPR} ${CODE}
403         
404 #define src_target()                                                    @@\
405 src:: ${CODE}                                                           @@\
406                                                                         @@\
407 ${CODE}:                                                                @@\
408         $(RM) $@                                                        @@\
409         -$(LN) ${SRCDIR}/$@ $@
410
411 #define do_subdirs_no_imakefile(subdirs)                                @@\
412         foreach_subdirs(all, subdirs)                                   @@\
413         foreach_subdirs(install, subdirs)                               @@\
414         foreach_subdirs(clean, subdirs)                                 @@\
415         foreach_subdirs(depend, subdirs)                                @@\
416         foreach_subdirs(tags, subdirs)                                  @@\
417         foreach_subdirs(print, subdirs)                                 @@\
418         foreach_subdirs(src, subdirs)                                   @@\
419
420 #define do_subdirs(subdirs)                                             @@\
421         do_subdirs_no_imakefile(subdirs)                                @@\
422                                                                         @@\
423 Makefiles::                                                             @@\
424         @echo "### Making Makefiles in" `pwd`                           @@\
425         @for d in subdirs; \                                            @@\
426         do \                                                            @@\
427                 (cd $$d; echo "### Making Makefile in" `pwd`; \         @@\
428                         $(MAKE) $(MFLAGS) SRCTOP=$(SRCTOP) \            @@\
429                         NEWTOP=../$(BUILDTOP)           \               @@\
430                         BUILDTOP=../$(BUILDTOP)         \               @@\
431                         -f ../Makefile                  \               @@\
432                         Makefile; \                                     @@\
433                         $(MAKE) $(MFLAGS) SRCTOP=$(SRCTOP) \            @@\
434                         NEWTOP=../$(BUILDTOP)           \               @@\
435                         Makefiles; \                                    @@\
436                         echo "### Done with" `pwd`); \                  @@\
437         done
438
439
440
This page took 0.080667 seconds and 5 git commands to generate.