1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/* @(#)rules.c 1.13 03/11/26 Copyright 1987 J. Schilling */
#ifndef lint
static char sccsid[] =
"@(#)rules.c 1.13 03/11/26 Copyright 1987 J. Schilling";
#endif
/*
* Copyright (c) 1987 J. Schilling
*/
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; see the file COPYING. If not, write to the Free Software
* Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <mconfig.h>
#include <stdio.h>
#include <standard.h>
#include "make.h"
/*
* Default rules complied into make.
*
* Should rather read in a setup file...
*/
char implicit_rules[] =
#if defined(unix) || defined(IS_UNIX) || defined(IS_GCC_WIN32) || \
defined(__EMX__) || defined(__BEOS__) || defined(__DJGPP__)
# define _OS_
"\
FC= f77\n\
RC= f77\n\
PC= pc\n\
AS= as\n\
CC= cc\n\
LD= ld\n\
LEX= lex\n\
MAKE= smake\n\
YACCR= yacc -r\n\
YACC= yacc\n\
ROFF= nroff\n\
ASFLAGS=\n\
FFLAGS=\n\
LDFLAGS=\n\
RFLAGS= -ms\n\
YFLAGS=\n\
.o: .c .s .l\n\
$(CC) -c $(CFLAGS) $(CPPFLAGS) $<\n\
$(AS) -o $*.o $(ASFLAGS) $<\n\
$(LEX) $(LFLAGS) $<;$(CC) -c $(CFLAGS) lex.yy.c;rm lex.yy.c;mv lex.yy.o $@\n\
.c: .y\n\
$(YACC) $(YFLAGS) $<;mv y.tab.c $@\n\
\"\": .o .sc\n\
$(CC) -o $* $<\n\
$(ROFF) $(RFLAGS) $< > $@\n";
#endif
#ifdef tos
# define _OS_
"\
FC= f77\n\
RC= f77\n\
PC= pc\n\
AS= as\n\
CC= cc\n\
LD= ld\n\
LEX= lex\n\
MAKE= smake\n\
YACCR= yacc -r\n\
YACC= yacc\n\
ROFF= nroff\n\
ASFLAGS=\n\
FFLAGS=\n\
LDFLAGS=\n\
RFLAGS= -ms\n\
.o: .c .s .l\n\
$(CC) -c $(CFLAGS) $(CPPFLAGS) $<\n\
$(AS) -o $*.o $(ASFLAGS) $<\n\
$(LEX) $(LFLAGS) $<;$(CC) -c $(CFLAGS) lexyy.c;rm lexyy.c;mv lexyy.o $@\n\
.c: .y\n\
$(YACC) $(YFLAGS) $<;mv ytab.c $@\n\
\"\": .sc\n\
$(ROFF) $(RFLAGS) $< > $@\n\
.prg .tos .ttp: .o\n\
$(CC) -o $* $<\n";
#endif
#ifndef _OS_
"";
#endif
|