12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.8 2000/05/11 19:34:50 peterg
## *** empty log message ***
##
## Revision 1.7 1999/08/29 06:14:27 peterg
## No longer remove "PASCAL_MAIN"
##
## Revision 1.6 1999/04/20 06:17:15 peterg
|
>
>
>
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.9 2000/05/16 18:56:58 peterg
## Now realised that libp2c.a avoids many probs - so simplified it.
##
## Revision 1.8 2000/05/11 19:34:50 peterg
## *** empty log message ***
##
## Revision 1.7 1999/08/29 06:14:27 peterg
## No longer remove "PASCAL_MAIN"
##
## Revision 1.6 1999/04/20 06:17:15 peterg
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# pretty heading
DATE=`date`
cat <<EOF >$1_$2.c
/* C program $1_$2.c */
/* Generated by MTT on $DATE */
/* Compile with cc -lm $1_$2.c */
EOF
#cat<<EOF >>$1_$2.c
#/* The following is the header file included here for completeness */
#EOF
#cat $MTTPATH/trans/c/p2c.h >> $1_$2.c
|
|
>
|
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# pretty heading
DATE=`date`
cat <<EOF >$1_$2.c
/* C program $1_$2.c */
/* Generated by MTT on $DATE */
/* Compile with gcc -lm -lp2c $1_$2.c -o $1_$2.out */
/* Note that p2c must be correctly installed so that p2c.h and libp2c.a are accessible */
EOF
#cat<<EOF >>$1_$2.c
#/* The following is the header file included here for completeness */
#EOF
#cat $MTTPATH/trans/c/p2c.h >> $1_$2.c
|