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