blob: 276faca5d4c0b02c18f3560eb5e13ea1c3a2d31f (
plain)
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
|
# Makefile for f2c, a Fortran 77 to C converter
PROG= f2c
CFLAGS += -DANSI_Libraries -I${.CURDIR} -I.
SHELL = /bin/sh
SRCSd = main.c init.c gram.c lex.c proc.c equiv.c data.c format.c \
expr.c exec.c intr.c io.c misc.c error.c mem.c names.c \
output.c p1output.c pread.c put.c putpcc.c vax.c formatdata.c \
parse_args.c niceprintf.c cds.c sysdep.c version.c
SRCS = $(SRCSd) # malloc.c
GRAMFILES = ${.CURDIR}/gram.head ${.CURDIR}/gram.dcl ${.CURDIR}/gram.expr\
${.CURDIR}/gram.exec ${.CURDIR}/gram.io
gram.c: ${GRAMFILES} ${.CURDIR}/defs.h tokdefs.h
(sed < tokdefs.h "s/#define/%token/" ; \
cat ${GRAMFILES}) > gram.in
$(YACC) $(YFLAGS) gram.in
echo "# expect 4 shift/reduce conflicts"
sed 's/^# line.*/\/* & *\//' y.tab.c >gram.c
rm -f gram.in y.tab.c
tokdefs.h: ${.CURDIR}/tokens
grep -n . <${.CURDIR}/tokens | sed "s/\([^:]*\):\(.*\)/#define \2 \1/" >tokdefs.h
CLEANFILES+=\
gram.c tokdefs.h y.tab.h
.include <bsd.prog.mk>
|