]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/config/mkmakefile.c
This commit was generated by cvs2svn to compensate for changes in r89019,
[FreeBSD/FreeBSD.git] / usr.sbin / config / mkmakefile.c
1 /*
2  * Copyright (c) 1993, 19801990
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 #if 0
36 static char sccsid[] = "@(#)mkmakefile.c        8.1 (Berkeley) 6/6/93";
37 #endif
38 static const char rcsid[] =
39   "$FreeBSD$";
40 #endif /* not lint */
41
42 /*
43  * Build the makefile for the system, from
44  * the information in the files files and the
45  * additional files for the machine being compiled to.
46  */
47
48 #include <ctype.h>
49 #include <err.h>
50 #include <stdio.h>
51 #include <string.h>
52 #include <sys/param.h>
53 #include "y.tab.h"
54 #include "config.h"
55 #include "configvers.h"
56
57 #define next_word(fp, wd) \
58         { char *word = get_word(fp); \
59           if (word == (char *)EOF) \
60                 return; \
61           else \
62                 wd = word; \
63         }
64 #define next_quoted_word(fp, wd) \
65         { char *word = get_quoted_word(fp); \
66           if (word == (char *)EOF) \
67                 return; \
68           else \
69                 wd = word; \
70         }
71
72 static struct file_list *fcur;
73
74 static char *tail(char *);
75 static void do_clean(FILE *);
76 static void do_rules(FILE *);
77 static void do_xxfiles(char *, FILE *);
78 static void do_objs(FILE *);
79 static void do_before_depend(FILE *);
80 static int opteq(const char *, const char *);
81 static void read_files(void);
82
83 /*
84  * Lookup a file, by name.
85  */
86 static struct file_list *
87 fl_lookup(char *file)
88 {
89         struct file_list *fp;
90
91         for (fp = ftab ; fp != 0; fp = fp->f_next) {
92                 if (eq(fp->f_fn, file))
93                         return (fp);
94         }
95         return (0);
96 }
97
98 /*
99  * Make a new file list entry
100  */
101 static struct file_list *
102 new_fent(void)
103 {
104         struct file_list *fp;
105
106         fp = (struct file_list *) malloc(sizeof *fp);
107         bzero(fp, sizeof *fp);
108         if (fcur == 0)
109                 fcur = ftab = fp;
110         else
111                 fcur->f_next = fp;
112         fcur = fp;
113         return (fp);
114 }
115
116 /*
117  * Build the makefile from the skeleton
118  */
119 void
120 makefile(void)
121 {
122         FILE *ifp, *ofp;
123         char line[BUFSIZ];
124         struct opt *op;
125         int versreq;
126         char *s;
127
128         read_files();
129         snprintf(line, sizeof(line), "../../conf/Makefile.%s", machinename);
130         ifp = fopen(line, "r");
131         if (ifp == 0) {
132                 snprintf(line, sizeof(line), "Makefile.%s", machinename);
133                 ifp = fopen(line, "r");
134         }
135         if (ifp == 0)
136                 err(1, "%s", line);
137         ofp = fopen(path("Makefile.new"), "w");
138         if (ofp == 0)
139                 err(1, "%s", path("Makefile.new"));
140         fprintf(ofp, "KERN_IDENT=%s\n", raisestr(ident));
141         fprintf(ofp, "IDENT=");
142         if (profiling)
143                 fprintf(ofp, " -DGPROF");
144
145         if (cputype == 0) {
146                 printf("cpu type must be specified\n");
147                 exit(1);
148         }
149         fprintf(ofp, "\n");
150         for (op = mkopt; op; op = op->op_next)
151                 fprintf(ofp, "%s=%s\n", op->op_name, op->op_value);
152         if (debugging)
153                 fprintf(ofp, "DEBUG=-g\n");
154         if (profiling) {
155                 fprintf(ofp, "PROF=-pg\n");
156                 fprintf(ofp, "PROFLEVEL=%d\n", profiling);
157         }
158         if (*srcdir != '\0')
159                 fprintf(ofp,"S=%s\n", srcdir);
160         while (fgets(line, BUFSIZ, ifp) != 0) {
161                 if (*line != '%') {
162                         fprintf(ofp, "%s", line);
163                         continue;
164                 }
165                 if (eq(line, "%BEFORE_DEPEND\n"))
166                         do_before_depend(ofp);
167                 else if (eq(line, "%OBJS\n"))
168                         do_objs(ofp);
169                 else if (strncmp(line, "%FILES.", 7) == 0)
170                         do_xxfiles(line, ofp);
171                 else if (eq(line, "%RULES\n"))
172                         do_rules(ofp);
173                 else if (eq(line, "%CLEAN\n"))
174                         do_clean(ofp);
175                 else if (strncmp(line, "%VERSREQ=", sizeof("%VERSREQ=") - 1) == 0) {
176                         versreq = atoi(line + sizeof("%VERSREQ=") - 1);
177                         if (versreq != CONFIGVERS) {
178                                 fprintf(stderr, "ERROR: version of config(8) does not match kernel!\n");
179                                 fprintf(stderr, "config version = %d, ", CONFIGVERS);
180                                 fprintf(stderr, "version required = %d\n\n", versreq);
181                                 fprintf(stderr, "Make sure that /usr/src/usr.sbin/config is in sync\n");
182                                 fprintf(stderr, "with your /usr/src/sys and install a new config binary\n");
183                                 fprintf(stderr, "before trying this again.\n\n");
184                                 fprintf(stderr, "If running the new config fails check your config\n");
185                                 fprintf(stderr, "file against the GENERIC or LINT config files for\n");
186                                 fprintf(stderr, "changes in config syntax, or option/device naming\n");
187                                 fprintf(stderr, "conventions\n\n");
188                                 exit(1);
189                         }
190                 } else
191                         fprintf(stderr,
192                             "Unknown %% construct in generic makefile: %s",
193                             line);
194         }
195         (void) fclose(ifp);
196         (void) fclose(ofp);
197         moveifchanged(path("Makefile.new"), path("Makefile"));
198
199         /* XXX makefile() should make the Makefile, not hints.c. */
200         if (hints) {
201                 ifp = fopen(hints, "r");
202                 if (ifp == NULL)
203                         err(1, "%s", hints);
204         } else {
205                 ifp = NULL;
206         }
207         ofp = fopen(path("hints.c.new"), "w");
208         if (ofp == NULL)
209                 err(1, "%s", path("hints.c.new"));
210         fprintf(ofp, "#include <sys/types.h>\n");
211         fprintf(ofp, "#include <sys/systm.h>\n");
212         fprintf(ofp, "\n");
213         fprintf(ofp, "int hintmode = %d;\n", hintmode);
214         fprintf(ofp, "char static_hints[] = {\n");
215         if (ifp) {
216                 while (fgets(line, BUFSIZ, ifp) != 0) {
217                         /* zap trailing CR and/or LF */
218                         while ((s = rindex(line, '\n')) != NULL)
219                                 *s = '\0';
220                         while ((s = rindex(line, '\r')) != NULL)
221                                 *s = '\0';
222                         /* remove # comments */
223                         s = index(line, '#');
224                         if (s)
225                                 *s = '\0';
226                         /* remove any whitespace and " characters */
227                         s = line;
228                         while (*s) {
229                                 if (*s == ' ' || *s == '\t' || *s == '"') {
230                                         while (*s) {
231                                                 s[0] = s[1];
232                                                 s++;
233                                         }
234                                         /* start over */
235                                         s = line;
236                                         continue;
237                                 }
238                                 s++;
239                         }
240                         /* anything left? */
241                         if (*line == '\0')
242                                 continue;
243                         fprintf(ofp, "\"%s\\0\"\n", line);
244                 }
245         }
246         fprintf(ofp, "\"\\0\"\n};\n");
247         if (ifp)
248                 fclose(ifp);
249         fclose(ofp);
250         moveifchanged(path("hints.c.new"), path("hints.c"));
251
252         /* XXX makefile() should make the Makefile, not env.c. */
253         if (env) {
254                 ifp = fopen(env, "r");
255                 if (ifp == NULL)
256                         err(1, "%s", env);
257         } else {
258                 ifp = NULL;
259         }
260         ofp = fopen(path("env.c.new"), "w");
261         if (ofp == NULL)
262                 err(1, "%s", path("env.c.new"));
263         fprintf(ofp, "#include <sys/types.h>\n");
264         fprintf(ofp, "#include <sys/systm.h>\n");
265         fprintf(ofp, "\n");
266         fprintf(ofp, "int envmode = %d;\n", envmode);
267         fprintf(ofp, "char static_env[] = {\n");
268         if (ifp) {
269                 while (fgets(line, BUFSIZ, ifp) != 0) {
270                         /* zap trailing CR and/or LF */
271                         while ((s = rindex(line, '\n')) != NULL)
272                                 *s = '\0';
273                         while ((s = rindex(line, '\r')) != NULL)
274                                 *s = '\0';
275                         /* remove # comments */
276                         s = index(line, '#');
277                         if (s)
278                                 *s = '\0';
279                         /* remove any whitespace and " characters */
280                         s = line;
281                         while (*s) {
282                                 if (*s == ' ' || *s == '\t' || *s == '"') {
283                                         while (*s) {
284                                                 s[0] = s[1];
285                                                 s++;
286                                         }
287                                         /* start over */
288                                         s = line;
289                                         continue;
290                                 }
291                                 s++;
292                         }
293                         /* anything left? */
294                         if (*line == '\0')
295                                 continue;
296                         fprintf(ofp, "\"%s\\0\"\n", line);
297                 }
298         }
299         fprintf(ofp, "\"\\0\"\n};\n");
300         if (ifp)
301                 fclose(ifp);
302         fclose(ofp);
303         moveifchanged(path("env.c.new"), path("env.c"));
304 }
305
306 /*
307  * Read in the information about files used in making the system.
308  * Store it in the ftab linked list.
309  */
310 static void
311 read_files(void)
312 {
313         FILE *fp;
314         struct file_list *tp, *pf;
315         struct device *dp;
316         struct opt *op;
317         char *wd, *this, *needs, *compilewith, *depends, *clean, *warning;
318         char fname[MAXPATHLEN];
319         int nreqs, first = 1, isdup, std, filetype,
320             imp_rule, no_obj, needcount, before_depend, mandatory;
321
322         ftab = 0;
323         if (ident == NULL) {
324                 printf("no ident line specified\n");
325                 exit(1);
326         }
327         (void) snprintf(fname, sizeof(fname), "../../conf/files");
328 openit:
329         fp = fopen(fname, "r");
330         if (fp == 0)
331                 err(1, "%s", fname);
332 next:
333         /*
334          * filename    [ standard | mandatory | optional | count ]
335          *      [ dev* | profiling-routine ] [ no-obj ]
336          *      [ compile-with "compile rule" [no-implicit-rule] ]
337          *      [ dependency "dependency-list"] [ before-depend ]
338          *      [ clean "file-list"] [ warning "text warning" ]
339          */
340         wd = get_word(fp);
341         if (wd == (char *)EOF) {
342                 (void) fclose(fp);
343                 if (first == 1) {
344                         first++;
345                         (void) snprintf(fname, sizeof(fname),
346                             "../../conf/files.%s", machinename);
347                         fp = fopen(fname, "r");
348                         if (fp != 0)
349                                 goto next;
350                         (void) snprintf(fname, sizeof(fname),
351                             "files.%s", machinename);
352                         goto openit;
353                 }
354                 return;
355         }
356         if (wd == 0)
357                 goto next;
358         if (wd[0] == '#')
359         {
360                 while (((wd = get_word(fp)) != (char *)EOF) && wd)
361                         ;
362                 goto next;
363         }
364         this = ns(wd);
365         next_word(fp, wd);
366         if (wd == 0) {
367                 printf("%s: No type for %s.\n",
368                     fname, this);
369                 exit(1);
370         }
371         if ((pf = fl_lookup(this)) && (pf->f_type != INVISIBLE || pf->f_flags))
372                 isdup = ISDUP;
373         else
374                 isdup = 0;
375         tp = 0;
376         nreqs = 0;
377         compilewith = 0;
378         depends = 0;
379         clean = 0;
380         warning = 0;
381         needs = 0;
382         std = mandatory = 0;
383         imp_rule = 0;
384         no_obj = 0;
385         needcount = 0;
386         before_depend = 0;
387         filetype = NORMAL;
388         if (eq(wd, "standard")) {
389                 std = 1;
390         /*
391          * If an entry is marked "mandatory", config will abort if it's
392          * not called by a configuration line in the config file.  Apart
393          * from this, the device is handled like one marked "optional".
394          */
395         } else if (eq(wd, "mandatory")) {
396                 mandatory = 1;
397         } else if (eq(wd, "count")) {
398                 needcount = 1;
399         } else if (!eq(wd, "optional")) {
400                 printf("%s: %s must be count, optional, mandatory or standard\n",
401                        fname, this);
402                 exit(1);
403         }
404 nextparam:
405         next_word(fp, wd);
406         if (wd == 0)
407                 goto doneparam;
408         if (eq(wd, "no-obj")) {
409                 no_obj++;
410                 goto nextparam;
411         }
412         if (eq(wd, "no-implicit-rule")) {
413                 if (compilewith == 0) {
414                         printf("%s: alternate rule required when "
415                                "\"no-implicit-rule\" is specified.\n",
416                                fname);
417                 }
418                 imp_rule++;
419                 goto nextparam;
420         }
421         if (eq(wd, "before-depend")) {
422                 before_depend++;
423                 goto nextparam;
424         }
425         if (eq(wd, "dependency")) {
426                 next_quoted_word(fp, wd);
427                 if (wd == 0) {
428                         printf("%s: %s missing compile command string.\n",
429                                fname, this);
430                         exit(1);
431                 }
432                 depends = ns(wd);
433                 goto nextparam;
434         }
435         if (eq(wd, "clean")) {
436                 next_quoted_word(fp, wd);
437                 if (wd == 0) {
438                         printf("%s: %s missing clean file list.\n",
439                                fname, this);
440                         exit(1);
441                 }
442                 clean = ns(wd);
443                 goto nextparam;
444         }
445         if (eq(wd, "compile-with")) {
446                 next_quoted_word(fp, wd);
447                 if (wd == 0) {
448                         printf("%s: %s missing compile command string.\n",
449                                fname, this);
450                         exit(1);
451                 }
452                 compilewith = ns(wd);
453                 goto nextparam;
454         }
455         if (eq(wd, "warning")) {
456                 next_quoted_word(fp, wd);
457                 if (wd == 0) {
458                         printf("%s: %s missing warning text string.\n",
459                                 fname, this);
460                         exit(1);
461                 }
462                 warning = ns(wd);
463                 goto nextparam;
464         }
465         nreqs++;
466         if (eq(wd, "local")) {
467                 filetype = LOCAL;
468                 goto nextparam;
469         }
470         if (eq(wd, "no-depend")) {
471                 filetype = NODEPEND;
472                 goto nextparam;
473         }
474         if (eq(wd, "profiling-routine")) {
475                 filetype = PROFILING;
476                 goto nextparam;
477         }
478         if (needs == 0 && nreqs == 1)
479                 needs = ns(wd);
480         if (isdup)
481                 goto invis;
482         for (dp = dtab; dp != 0; dp = dp->d_next)
483                 if (eq(dp->d_name, wd)) {
484                         if (std && dp->d_count <= 0)
485                                 dp->d_count = 1;
486                         goto nextparam;
487                 }
488         if (mandatory) {
489                 printf("%s: mandatory device \"%s\" not found\n",
490                        fname, wd);
491                 exit(1);
492         }
493         if (std) {
494                 printf("standard entry %s has a device keyword - %s!\n",
495                        this, wd);
496                 exit(1);
497         }
498         for (op = opt; op != 0; op = op->op_next)
499                 if (op->op_value == 0 && opteq(op->op_name, wd)) {
500                         if (nreqs == 1) {
501                                 free(needs);
502                                 needs = 0;
503                         }
504                         goto nextparam;
505                 }
506 invis:
507         while ((wd = get_word(fp)) != 0)
508                 ;
509         if (tp == 0)
510                 tp = new_fent();
511         tp->f_fn = this;
512         tp->f_type = INVISIBLE;
513         tp->f_needs = needs;
514         tp->f_flags |= isdup;
515         if (needcount)
516                 tp->f_flags |= NEED_COUNT;
517         tp->f_compilewith = compilewith;
518         tp->f_depends = depends;
519         tp->f_clean = clean;
520         tp->f_warn = warning;
521         goto next;
522
523 doneparam:
524         if (std == 0 && nreqs == 0) {
525                 printf("%s: what is %s optional on?\n",
526                     fname, this);
527                 exit(1);
528         }
529
530         if (wd) {
531                 printf("%s: syntax error describing %s\n",
532                     fname, this);
533                 exit(1);
534         }
535         if (filetype == PROFILING && profiling == 0)
536                 goto next;
537         if (tp == 0)
538                 tp = new_fent();
539         tp->f_fn = this;
540         tp->f_type = filetype;
541         tp->f_flags &= ~ISDUP;
542         if (imp_rule)
543                 tp->f_flags |= NO_IMPLCT_RULE;
544         if (no_obj)
545                 tp->f_flags |= NO_OBJ;
546         if (before_depend)
547                 tp->f_flags |= BEFORE_DEPEND;
548         if (needcount)
549                 tp->f_flags |= NEED_COUNT;
550         tp->f_needs = needs;
551         tp->f_compilewith = compilewith;
552         tp->f_depends = depends;
553         tp->f_clean = clean;
554         tp->f_warn = warning;
555         if (pf && pf->f_type == INVISIBLE)
556                 pf->f_flags |= ISDUP;           /* mark as duplicate */
557         goto next;
558 }
559
560 static int
561 opteq(const char *cp, const char *dp)
562 {
563         char c, d;
564
565         for (; ; cp++, dp++) {
566                 if (*cp != *dp) {
567                         c = isupper(*cp) ? tolower(*cp) : *cp;
568                         d = isupper(*dp) ? tolower(*dp) : *dp;
569                         if (c != d)
570                                 return (0);
571                 }
572                 if (*cp == 0)
573                         return (1);
574         }
575 }
576
577 static void
578 do_before_depend(FILE *fp)
579 {
580         struct file_list *tp;
581         int lpos, len;
582
583         fputs("BEFORE_DEPEND=", fp);
584         lpos = 15;
585         for (tp = ftab; tp; tp = tp->f_next)
586                 if (tp->f_flags & BEFORE_DEPEND) {
587                         len = strlen(tp->f_fn);
588                         if ((len = 3 + len) + lpos > 72) {
589                                 lpos = 8;
590                                 fputs("\\\n\t", fp);
591                         }
592                         if (tp->f_flags & NO_IMPLCT_RULE)
593                                 fprintf(fp, "%s ", tp->f_fn);
594                         else
595                                 fprintf(fp, "$S/%s ", tp->f_fn);
596                         lpos += len + 1;
597                 }
598         if (lpos != 8)
599                 putc('\n', fp);
600 }
601
602 static void
603 do_objs(FILE *fp)
604 {
605         struct file_list *tp;
606         int lpos, len;
607         char *cp, och, *sp;
608
609         fprintf(fp, "OBJS=");
610         lpos = 6;
611         for (tp = ftab; tp != 0; tp = tp->f_next) {
612                 if (tp->f_type == INVISIBLE || tp->f_flags & NO_OBJ)
613                         continue;
614                 sp = tail(tp->f_fn);
615                 cp = sp + (len = strlen(sp)) - 1;
616                 och = *cp;
617                 *cp = 'o';
618                 if (len + lpos > 72) {
619                         lpos = 8;
620                         fprintf(fp, "\\\n\t");
621                 }
622                 fprintf(fp, "%s ", sp);
623                 lpos += len + 1;
624                 *cp = och;
625         }
626         if (lpos != 8)
627                 putc('\n', fp);
628 }
629
630 static void
631 do_xxfiles(char *tag, FILE *fp)
632 {
633         struct file_list *tp;
634         int lpos, len, slen;
635         char *suff, *SUFF;
636
637         if (tag[strlen(tag) - 1] == '\n')
638                 tag[strlen(tag) - 1] = '\0';
639
640         suff = ns(tag + 7);
641         SUFF = ns(suff);
642         raisestr(SUFF);
643         slen = strlen(suff);
644
645         fprintf(fp, "%sFILES=", SUFF);
646         lpos = 8;
647         for (tp = ftab; tp; tp = tp->f_next)
648                 if (tp->f_type != INVISIBLE && tp->f_type != NODEPEND) {
649                         len = strlen(tp->f_fn);
650                         if (tp->f_fn[len - slen - 1] != '.')
651                                 continue;
652                         if (strcasecmp(&tp->f_fn[len - slen], suff) != 0)
653                                 continue;
654                         if ((len = 3 + len) + lpos > 72) {
655                                 lpos = 8;
656                                 fputs("\\\n\t", fp);
657                         }
658                         if (tp->f_type != LOCAL)
659                                 fprintf(fp, "$S/%s ", tp->f_fn);
660                         else
661                                 fprintf(fp, "%s ", tp->f_fn);
662                         lpos += len + 1;
663                 }
664         if (lpos != 8)
665                 putc('\n', fp);
666 }
667
668 static char *
669 tail(char *fn)
670 {
671         char *cp;
672
673         cp = rindex(fn, '/');
674         if (cp == 0)
675                 return (fn);
676         return (cp+1);
677 }
678
679 /*
680  * Create the makerules for each file
681  * which is part of the system.
682  */
683 static void
684 do_rules(FILE *f)
685 {
686         char *cp, *np, och, *tp;
687         struct file_list *ftp;
688         char *compilewith;
689
690         for (ftp = ftab; ftp != 0; ftp = ftp->f_next) {
691                 if (ftp->f_type == INVISIBLE)
692                         continue;
693                 if (ftp->f_warn)
694                         printf("WARNING: %s\n", ftp->f_warn);
695                 cp = (np = ftp->f_fn) + strlen(ftp->f_fn) - 1;
696                 och = *cp;
697                 if (ftp->f_flags & NO_IMPLCT_RULE) {
698                         if (ftp->f_depends)
699                                 fprintf(f, "%s: %s\n", np, ftp->f_depends);
700                         else
701                                 fprintf(f, "%s: \n", np);
702                 }
703                 else {
704                         *cp = '\0';
705                         if (och == 'o') {
706                                 fprintf(f, "%so:\n\t-cp $S/%so .\n\n",
707                                         tail(np), np);
708                                 continue;
709                         }
710                         if (ftp->f_depends)
711                                 fprintf(f, "%so: $S/%s%c %s\n", tail(np),
712                                         np, och, ftp->f_depends);
713                         else
714                                 fprintf(f, "%so: $S/%s%c\n", tail(np),
715                                         np, och);
716                 }
717                 tp = tail(np);
718                 compilewith = ftp->f_compilewith;
719                 if (compilewith == 0) {
720                         const char *ftype = NULL;
721                         static char cmd[128];
722
723                         switch (ftp->f_type) {
724
725                         case NORMAL:
726                                 ftype = "NORMAL";
727                                 break;
728
729                         case PROFILING:
730                                 if (!profiling)
731                                         continue;
732                                 ftype = "PROFILE";
733                                 break;
734
735                         default:
736                                 printf("config: don't know rules for %s\n", np);
737                                 break;
738                         }
739                         snprintf(cmd, sizeof(cmd), "${%s_%c}", ftype,
740                             toupper(och));
741                         compilewith = cmd;
742                 }
743                 *cp = och;
744                 fprintf(f, "\t%s\n\n", compilewith);
745         }
746 }
747
748 static void
749 do_clean(FILE *fp)
750 {
751         struct file_list *tp;
752         int lpos, len;
753
754         fputs("CLEAN=", fp);
755         lpos = 7;
756         for (tp = ftab; tp; tp = tp->f_next)
757                 if (tp->f_clean) {
758                         len = strlen(tp->f_clean);
759                         if (len + lpos > 72) {
760                                 lpos = 8;
761                                 fputs("\\\n\t", fp);
762                         }
763                         fprintf(fp, "%s ", tp->f_clean);
764                         lpos += len + 1;
765                 }
766         if (lpos != 8)
767                 putc('\n', fp);
768 }
769
770 char *
771 raisestr(char *str)
772 {
773         char *cp = str;
774
775         while (*str) {
776                 if (islower(*str))
777                         *str = toupper(*str);
778                 str++;
779         }
780         return (cp);
781 }