blob: b3abdb7effaf4a3250bce7878555efd14aa305d3 (
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
|
# from: @(#)Makefile 6.4 (Berkeley) 2/21/91
# $Id: Makefile,v 1.10 1994/12/22 09:33:51 cgd Exp $
PROG= cpp
BINDIR= /usr/libexec
SRCS= cccp.c cexp.y version.c
CFLAGS+= -I. -I$(.CURDIR) -I$(.CURDIR)/../common \
-I$(.CURDIR)/../arch/$(MACHINE_ARCH) -I$(.CURDIR)/../arch \
-DGCC_INCLUDE_DIR=\"\" \
-DGPLUSPLUS_INCLUDE_DIR=\"/usr/include/g++\"
LDADD+= -lgnumalloc
DPADD+= /usr/lib/libgnumalloc.a
YFLAGS=
MLINKS= cpp.1 gcpp.1
.PATH: $(.CURDIR)/../common
afterinstall:
install -c -o $(BINOWN) -g $(BINGRP) -m $(BINMODE) \
$(.CURDIR)/usr.bin.cpp.sh $(DESTDIR)/usr/bin/cpp
@/bin/rm -rf $(DESTDIR)/usr/bin/gcpp
@ln $(DESTDIR)/usr/bin/cpp $(DESTDIR)/usr/bin/gcpp
@echo $(DESTDIR)/usr/bin/gcpp -\> $(DESTDIR)/usr/bin/cpp
.include <bsd.prog.mk>
|