file reorg, pathnames.h, paths.h
[unix-history] / usr / src / usr.bin / f77 / pass1.vax / Makefile
CommitLineData
fa32ce0f 1#
01ccfa75 2# Copyright (c) 1987 Regents of the University of California.
fa32ce0f
KM
3# All rights reserved. The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
dc0e9d50 6# @(#)Makefile 5.5 (Berkeley) %G%
fa32ce0f 7#
01ccfa75
KB
8CFLAGS= -O -DHERE=VAX -DTARGET=VAX -DFAMILY=PCC -DUCBVAXASM \
9 -DUCBPASS2 -DNAMELIST -I../include
10LIBC= /lib/libc.a
11SRCS= bb.c conv.c data.c equiv.c error.c exec.c expr.c fmt.c gram.c init.c \
12 intr.c io.c lex.c main.c misc.c optcse.c optim.c optloop.c paramset.c \
13 proc.c put.c putpcc.c regalloc.c setfmt.c stab.c vax.c vaxx.c
14OBJS= bb.o conv.o data.o equiv.o error.o exec.o expr.o fmt.o gram.o init.o \
15 intr.o io.o lex.o main.o misc.o optcse.o optim.o optloop.o paramset.o \
16 proc.o put.o putpcc.o regalloc.o setfmt.o stab.o vax.o vaxx.o
fa32ce0f 17
01ccfa75 18all: f77pass1
fa32ce0f 19
01ccfa75
KB
20f77pass1: ${OBJS} ${LIBC}
21 ${CC} -o $@ ${CFLAGS} ${OBJS}
fa32ce0f
KM
22
23gram.c: gram.head gram.dcl gram.expr gram.exec gram.io tokdefs.h
01ccfa75 24 ( sed <tokdefs.h "s/#define/%token/"; \
fa32ce0f 25 cat gram.head gram.dcl gram.expr gram.exec gram.io ) >gram.in
01ccfa75 26 ${YACC} gram.in
fa32ce0f
KM
27 mv y.tab.c gram.c
28
29gram.head: defs.h data.h
30
31tokdefs.h: tokens
32 grep -n . <tokens | sed "s/\([^:]*\):\(.*\)/#define \2 \1/" >tokdefs.h
01ccfa75 33
dc0e9d50 34clean:
01ccfa75
KB
35 rm -f ${OBJS} core f77pass1 gram.c gram.in
36
dc0e9d50
KB
37cleandir: clean
38 rm -f ${MAN} tags .depend
39
40depend: ${SRCS}
01ccfa75
KB
41 mkdep ${CFLAGS} ${SRCS}
42
dc0e9d50
KB
43install: ${MAN}
44 install -s -o bin -g bin -m 755 f77pass1 ${DESTDIR}/usr/libexec
01ccfa75 45
dc0e9d50 46lint: ${SRCS}
01ccfa75
KB
47 lint ${CFLAGS} ${SRCS}
48
dc0e9d50 49tags: ${SRCS}
01ccfa75 50 ctags ${SRCS}