diff options
Diffstat (limited to 'usr.bin/pcc/cc/ccom/Makefile.inc')
-rw-r--r-- | usr.bin/pcc/cc/ccom/Makefile.inc | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/usr.bin/pcc/cc/ccom/Makefile.inc b/usr.bin/pcc/cc/ccom/Makefile.inc deleted file mode 100644 index 6d329262345..00000000000 --- a/usr.bin/pcc/cc/ccom/Makefile.inc +++ /dev/null @@ -1,45 +0,0 @@ -# $OpenBSD: Makefile.inc,v 1.1 2007/09/19 15:21:07 todd 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}/../../../arch/${TARGMACH} -CPPFLAGS+= -I${.CURDIR}/../../../os/${TARGOS} - -.PATH: ${.CURDIR}/../../../arch/${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}/../../../arch/${TARGMACH}/table.c \ - ${.CURDIR}/../../../mip/common.c - -external.h external.c: mkext - ./mkext - -cleandepend: - rm -f .depend ${.CURDIR}/tags cgram.h |