blob: 62cfda3e7445540fb5b4374575e10b36b7c617ab (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# $OpenBSD: Makefile.inc,v 1.4 2008/08/21 16:39:54 ragge Exp $
#
# Makefile for the ccom part of pcc.
#
PROG= ccom_${TARGMACH}
MAN= ccom.1
PREFIX= /usr/local
BINDIR= ${PREFIX}/libexec
MANDIR= ${PREFIX}/man/man
TARGOS= openbsd
CLEANFILES= external.h external.c mkext
CFLAGS+= -DPCC_DEBUG -DGCC_COMPAT
CFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes -Werror
CFLAGS+= -DLIBEXECDIR=\"${PREFIX}/libexec\"
CPPFLAGS+= -I. -I${.CURDIR}/.. -I${.CURDIR} -I${.CURDIR}/../../mip
CPPFLAGS+= -I${.CURDIR}/../../${TARGMACH}
CPPFLAGS+= -I${.CURDIR}/../..
.PATH: ${.CURDIR}/../../${TARGMACH}
.PATH: ${.CURDIR}/../../mip
.PATH: ${.CURDIR}/..
SRCS=optim.c pftn.c scan.l trees.c cgram.y inline.c symtabs.c \
gcc_compat.c init.c local.c code.c stabs.c match.c reader.c optim2.c \
regs.c local2.c order.c table.c common.c main.c external.c
cgram.c: cgram.y
$(YACC) $(YFLAGS) -d $<
mv y.tab.c cgram.c
mv y.tab.h cgram.h
mkext: mkext.c table.c common.c
$(CC) $(CPPFLAGS) $(CFLAGS) -DMKEXT -o mkext \
${.CURDIR}/../../mip/mkext.c ${.CURDIR}/../../${TARGMACH}/table.c \
${.CURDIR}/../../mip/common.c
external.h external.c: mkext
./mkext
pftn.o: cgram.c
reader.o regs.o match.o trees.o: external.h
cleandepend:
rm -f .depend ${.CURDIR}/tags cgram.h
|