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