1994-08-28 14:56:07 +00:00
|
|
|
# from: @(#)sys.mk 8.2 (Berkeley) 3/21/94
|
1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
unix ?= We run FreeBSD, not UNIX.
|
2001-06-16 07:27:23 +00:00
|
|
|
.FreeBSD ?= true
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1996-11-03 03:25:50 +00:00
|
|
|
# If the special target .POSIX appears (without prerequisites or
|
|
|
|
# commands) before the first noncomment line in the makefile, make shall
|
|
|
|
# process the makefile as specified by the Posix 1003.2 specification.
|
|
|
|
# make(1) sets the special macro %POSIX in this case (to the actual
|
|
|
|
# value "1003.2", for what it's worth).
|
|
|
|
#
|
|
|
|
# The rules below use this macro to distinguish between Posix-compliant
|
|
|
|
# and default behaviour.
|
|
|
|
|
|
|
|
.if defined(%POSIX)
|
|
|
|
.SUFFIXES: .o .c .y .l .a .sh .f
|
|
|
|
.else
|
1998-06-05 18:38:55 +00:00
|
|
|
.SUFFIXES: .out .a .ln .o .c .cc .cpp .cxx .C .m .F .f .e .r .y .l .S .s .cl .p .h .sh
|
1996-11-03 03:25:50 +00:00
|
|
|
.endif
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
.LIBS: .a
|
|
|
|
|
1994-11-07 04:18:04 +00:00
|
|
|
X11BASE ?= /usr/X11R6
|
1994-09-04 02:52:27 +00:00
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
AR ?= ar
|
1996-11-03 03:25:50 +00:00
|
|
|
.if defined(%POSIX)
|
|
|
|
ARFLAGS ?= -rv
|
|
|
|
.else
|
1994-08-28 14:56:07 +00:00
|
|
|
ARFLAGS ?= rl
|
1996-11-03 03:25:50 +00:00
|
|
|
.endif
|
1994-08-28 14:56:07 +00:00
|
|
|
RANLIB ?= ranlib
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
AS ?= as
|
|
|
|
AFLAGS ?=
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1996-11-03 03:25:50 +00:00
|
|
|
.if defined(%POSIX)
|
|
|
|
CC ?= c89
|
|
|
|
.else
|
1994-08-28 14:56:07 +00:00
|
|
|
CC ?= cc
|
1996-11-03 03:25:50 +00:00
|
|
|
.endif
|
1998-05-01 11:36:59 +00:00
|
|
|
CFLAGS ?= -O -pipe
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-08-31 03:57:32 +00:00
|
|
|
CXX ?= c++
|
1994-08-28 14:56:07 +00:00
|
|
|
CXXFLAGS ?= ${CXXINCLUDES} ${CFLAGS}
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
CPP ?= cpp
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
.if ${.MAKEFLAGS:M-s} == ""
|
|
|
|
ECHO ?= echo
|
|
|
|
ECHODIR ?= echo
|
|
|
|
.else
|
|
|
|
ECHO ?= true
|
|
|
|
.if ${.MAKEFLAGS:M-s} == "-s"
|
|
|
|
ECHODIR ?= echo
|
|
|
|
.else
|
|
|
|
ECHODIR ?= true
|
|
|
|
.endif
|
|
|
|
.endif
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1996-11-03 03:25:50 +00:00
|
|
|
.if defined(%POSIX)
|
|
|
|
FC ?= fort77
|
|
|
|
FFLAGS ?= -O 1
|
|
|
|
.else
|
1994-08-28 14:56:07 +00:00
|
|
|
FC ?= f77
|
|
|
|
FFLAGS ?= -O
|
1996-11-03 03:25:50 +00:00
|
|
|
.endif
|
1994-08-28 14:56:07 +00:00
|
|
|
EFLAGS ?=
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-12-28 03:51:03 +00:00
|
|
|
INSTALL ?= install
|
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
LEX ?= lex
|
|
|
|
LFLAGS ?=
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
LD ?= ld
|
|
|
|
LDFLAGS ?=
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
LINT ?= lint
|
|
|
|
LINTFLAGS ?= -chapbx
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
MAKE ?= make
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1998-05-15 09:30:13 +00:00
|
|
|
OBJC ?= cc
|
|
|
|
OBJCFLAGS ?= ${OBJCINCLUDES} ${CFLAGS} -Wno-import
|
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
PC ?= pc
|
|
|
|
PFLAGS ?=
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1994-08-28 14:56:07 +00:00
|
|
|
RC ?= f77
|
|
|
|
RFLAGS ?=
|
|
|
|
|
|
|
|
SHELL ?= sh
|
|
|
|
|
|
|
|
YACC ?= yacc
|
1996-11-03 03:25:50 +00:00
|
|
|
.if defined(%POSIX)
|
|
|
|
YFLAGS ?=
|
|
|
|
.else
|
1994-08-28 14:56:07 +00:00
|
|
|
YFLAGS ?= -d
|
1996-11-03 03:25:50 +00:00
|
|
|
.endif
|
|
|
|
|
2000-04-21 23:51:58 +00:00
|
|
|
# FreeBSD/i386 has traditionally been built with a version of make
|
1998-01-21 01:03:51 +00:00
|
|
|
# which knows MACHINE, but not MACHINE_ARCH. When building on other
|
|
|
|
# architectures, assume that the version of make being used has an
|
|
|
|
# explicit MACHINE_ARCH setting and treat a missing MACHINE_ARCH
|
2001-02-19 23:33:13 +00:00
|
|
|
# as an i386 architecture.
|
1998-08-03 08:28:14 +00:00
|
|
|
MACHINE_ARCH ?= i386
|
1997-09-05 11:45:15 +00:00
|
|
|
|
1997-04-13 06:44:25 +00:00
|
|
|
# For tags rule.
|
1998-03-23 14:58:30 +00:00
|
|
|
GTAGSFLAGS= -o
|
1997-04-13 06:44:25 +00:00
|
|
|
HTAGSFLAGS=
|
|
|
|
|
1996-11-03 03:25:50 +00:00
|
|
|
.if defined(%POSIX)
|
|
|
|
# Posix 1003.2 mandated rules
|
|
|
|
#
|
|
|
|
# Quoted directly from the Posix 1003.2 draft, only the macros
|
|
|
|
# $@, $< and $* have been replaced by ${.TARGET}, ${.IMPSRC}, and
|
|
|
|
# ${.PREFIX}, resp.
|
|
|
|
|
|
|
|
# SINGLE SUFFIX RULES
|
|
|
|
.c:
|
1996-11-07 01:46:47 +00:00
|
|
|
${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.IMPSRC}
|
1996-11-03 03:25:50 +00:00
|
|
|
|
|
|
|
.f:
|
1996-11-07 01:46:47 +00:00
|
|
|
${FC} ${FFLAGS} ${LDFLAGS} -o ${.TARGET} ${.IMPSRC}
|
1996-11-03 03:25:50 +00:00
|
|
|
|
|
|
|
.sh:
|
|
|
|
cp ${.IMPSRC} ${.TARGET}
|
|
|
|
chmod a+x ${.TARGET}
|
|
|
|
|
|
|
|
# DOUBLE SUFFIX RULES
|
|
|
|
|
|
|
|
.c.o:
|
1996-11-07 01:46:47 +00:00
|
|
|
${CC} ${CFLAGS} -c ${.IMPSRC}
|
1996-11-03 03:25:50 +00:00
|
|
|
|
|
|
|
.f.o:
|
1996-11-07 01:46:47 +00:00
|
|
|
${FC} ${FFLAGS} -c ${.IMPSRC}
|
1996-11-03 03:25:50 +00:00
|
|
|
|
|
|
|
.y.o:
|
1996-11-07 01:46:47 +00:00
|
|
|
${YACC} ${YFLAGS} ${.IMPSRC}
|
|
|
|
${CC} ${CFLAGS} -c y.tab.c
|
1998-09-15 05:24:01 +00:00
|
|
|
rm -f y.tab.c
|
1996-11-03 03:25:50 +00:00
|
|
|
mv y.tab.o ${.TARGET}
|
|
|
|
|
|
|
|
.l.o:
|
1996-11-07 01:46:47 +00:00
|
|
|
${LEX} ${LFLAGS} ${.IMPSRC}
|
|
|
|
${CC} ${CFLAGS} -c lex.yy.c
|
1998-09-15 05:24:01 +00:00
|
|
|
rm -f lex.yy.c
|
1996-11-03 03:25:50 +00:00
|
|
|
mv lex.yy.o ${.TARGET}
|
|
|
|
|
|
|
|
.y.c:
|
1996-11-07 01:46:47 +00:00
|
|
|
${YACC} ${YFLAGS} ${.IMPSRC}
|
1996-11-03 03:25:50 +00:00
|
|
|
mv y.tab.c ${.TARGET}
|
|
|
|
|
|
|
|
.l.c:
|
1996-11-07 01:46:47 +00:00
|
|
|
${LEX} ${LFLAGS} ${.IMPSRC}
|
1996-11-03 03:25:50 +00:00
|
|
|
mv lex.yy.c ${.TARGET}
|
|
|
|
|
|
|
|
.c.a:
|
1996-11-07 01:46:47 +00:00
|
|
|
${CC} ${CFLAGS} -c ${.IMPSRC}
|
|
|
|
${AR} ${ARFLAGS} ${.TARGET} ${.PREFIX}.o
|
1998-09-15 05:24:01 +00:00
|
|
|
rm -f ${.PREFIX}.o
|
1996-11-03 03:25:50 +00:00
|
|
|
|
|
|
|
.f.a:
|
1996-11-07 01:46:47 +00:00
|
|
|
${FC} ${FFLAGS} -c ${.IMPSRC}
|
|
|
|
${AR} ${ARFLAGS} ${.TARGET} ${.PREFIX}.o
|
1998-09-15 05:24:01 +00:00
|
|
|
rm -f ${.PREFIX}.o
|
1996-11-03 03:25:50 +00:00
|
|
|
|
|
|
|
.else
|
|
|
|
|
|
|
|
# non-Posix rule set
|
1994-08-28 14:56:07 +00:00
|
|
|
|
1995-10-21 12:46:02 +00:00
|
|
|
.sh:
|
|
|
|
cp -p ${.IMPSRC} ${.TARGET}
|
|
|
|
chmod a+x ${.TARGET}
|
1994-05-30 19:09:18 +00:00
|
|
|
|
2001-06-06 16:51:38 +00:00
|
|
|
.c:
|
|
|
|
${CC} ${CFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET}
|
|
|
|
|
1994-05-30 19:09:18 +00:00
|
|
|
.c.o:
|
|
|
|
${CC} ${CFLAGS} -c ${.IMPSRC}
|
|
|
|
|
2001-06-06 16:51:38 +00:00
|
|
|
.cc .cpp .cxx .C:
|
|
|
|
${CXX} ${CXXFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET}
|
|
|
|
|
1998-06-05 18:38:55 +00:00
|
|
|
.cc.o .cpp.o .cxx.o .C.o:
|
1994-08-04 21:09:27 +00:00
|
|
|
${CXX} ${CXXFLAGS} -c ${.IMPSRC}
|
|
|
|
|
1998-05-15 09:30:13 +00:00
|
|
|
.m.o:
|
|
|
|
${OBJC} ${OBJCFLAGS} -c ${.IMPSRC}
|
|
|
|
|
1994-05-30 19:09:18 +00:00
|
|
|
.p.o:
|
|
|
|
${PC} ${PFLAGS} -c ${.IMPSRC}
|
|
|
|
|
2001-06-06 16:58:08 +00:00
|
|
|
.e .r .F .f:
|
|
|
|
${FC} ${RFLAGS} ${EFLAGS} ${FFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} \
|
|
|
|
-o ${.TARGET}
|
|
|
|
|
1994-05-30 19:09:18 +00:00
|
|
|
.e.o .r.o .F.o .f.o:
|
|
|
|
${FC} ${RFLAGS} ${EFLAGS} ${FFLAGS} -c ${.IMPSRC}
|
|
|
|
|
1994-10-02 05:12:46 +00:00
|
|
|
.S.o:
|
|
|
|
${CC} ${CFLAGS} -c ${.IMPSRC}
|
|
|
|
|
1994-05-30 19:09:18 +00:00
|
|
|
.s.o:
|
|
|
|
${AS} ${AFLAGS} -o ${.TARGET} ${.IMPSRC}
|
|
|
|
|
1996-06-02 17:04:08 +00:00
|
|
|
# XXX not -j safe
|
1994-05-30 19:09:18 +00:00
|
|
|
.y.o:
|
1996-06-02 17:04:08 +00:00
|
|
|
${YACC} ${YFLAGS} ${.IMPSRC}
|
|
|
|
${CC} ${CFLAGS} -c y.tab.c -o ${.TARGET}
|
1998-09-15 05:24:01 +00:00
|
|
|
rm -f y.tab.c
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
.l.o:
|
1996-05-28 16:20:13 +00:00
|
|
|
${LEX} -t ${LFLAGS} ${.IMPSRC} > ${.PREFIX}.tmp.c
|
|
|
|
${CC} ${CFLAGS} -c ${.PREFIX}.tmp.c -o ${.TARGET}
|
1998-09-15 05:24:01 +00:00
|
|
|
rm -f ${.PREFIX}.tmp.c
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1997-01-12 04:01:25 +00:00
|
|
|
# XXX not -j safe
|
1994-05-30 19:09:18 +00:00
|
|
|
.y.c:
|
1997-01-12 04:01:25 +00:00
|
|
|
${YACC} ${YFLAGS} ${.IMPSRC}
|
|
|
|
mv y.tab.c ${.TARGET}
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
.l.c:
|
1996-05-28 16:20:13 +00:00
|
|
|
${LEX} -t ${LFLAGS} ${.IMPSRC} > ${.TARGET}
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
.s.out .c.out .o.out:
|
1995-10-21 12:46:02 +00:00
|
|
|
${CC} ${CFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET}
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
.f.out .F.out .r.out .e.out:
|
1995-10-21 12:46:02 +00:00
|
|
|
${FC} ${EFLAGS} ${RFLAGS} ${FFLAGS} ${LDFLAGS} ${.IMPSRC} \
|
1994-05-30 19:09:18 +00:00
|
|
|
${LDLIBS} -o ${.TARGET}
|
1998-09-15 05:24:01 +00:00
|
|
|
rm -f ${.PREFIX}.o
|
1994-05-30 19:09:18 +00:00
|
|
|
|
1996-06-02 17:04:08 +00:00
|
|
|
# XXX not -j safe
|
1994-05-30 19:09:18 +00:00
|
|
|
.y.out:
|
1996-06-02 17:04:08 +00:00
|
|
|
${YACC} ${YFLAGS} ${.IMPSRC}
|
|
|
|
${CC} ${CFLAGS} ${LDFLAGS} y.tab.c ${LDLIBS} -ly -o ${.TARGET}
|
1998-09-15 05:24:01 +00:00
|
|
|
rm -f y.tab.c
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
.l.out:
|
1996-05-28 16:20:13 +00:00
|
|
|
${LEX} -t ${LFLAGS} ${.IMPSRC} > ${.PREFIX}.tmp.c
|
|
|
|
${CC} ${CFLAGS} ${LDFLAGS} ${.PREFIX}.tmp.c ${LDLIBS} -ll -o ${.TARGET}
|
1998-09-15 05:24:01 +00:00
|
|
|
rm -f ${.PREFIX}.tmp.c
|
1994-08-04 21:09:27 +00:00
|
|
|
|
1996-11-03 03:25:50 +00:00
|
|
|
.endif
|
|
|
|
|
1999-10-27 19:24:49 +00:00
|
|
|
.if exists(/etc/defaults/make.conf)
|
|
|
|
.include </etc/defaults/make.conf>
|
|
|
|
.endif
|
|
|
|
|
1994-08-04 21:09:27 +00:00
|
|
|
.if exists(/etc/make.conf)
|
|
|
|
.include </etc/make.conf>
|
|
|
|
.endif
|
1998-06-03 08:51:39 +00:00
|
|
|
|
Overhaul the MACHINE_CPU behaviour:
* Rip out MACHINE_CPU stuff from sys.mk and include a new <bsd.cpu.mk>
after we pull in /etc/make.conf. We need to do it afterwards so we can
react to the user setting of the:
* CPUTYPE variable, which contains the CPU type which the user wants to
optimize for. For example, if you want your binaries to only run on an
i686-class machine (or higher), set this to i686. If you want to support
running binaries on a variety of CPU generations, set this to the lowest
common denominator. Supported values are listed in make.conf.
* bsd.cpu.mk does the expansion of CPUTYPE into MACHINE_CPU using the
(hopefully) correct unordered list of CPU types which should be used on
that CPU. For example, an AMD k6 CPU wants any of the following:
k6 k5 i586 i486 i386
This is still an unordered list so the client makefile logic is simple -
client makefiles need to test for the various elements of the set in
decreasing order of priority using ${MACHINE_CPU:M<foo>}, as before.
The various MACHINE_CPU lists are believed to be correct, but should be
checked.
* If NO_CPU_CFLAGS is not defined, add relevant gcc compiler optimization
settings by default (e.g. -karch=k6 for CPUTYPE=k6, etc). Release
builders and developers of third-party software need to make sure not to
enable CPU-specific optimization when generating code intended to be
portable. We probably need to move to an /etc/world.conf to allow the
optimization stuff to be applied separately to world/kernel and external
compilations, but it's not any worse a problem than it was before.
* Add coverage for the ia64/itanium MACHINE_ARCH/CPUTYPE.
* Add CPUTYPE support for all of the CPU types supported by FreeBSD and gcc
(only i386, alpha and ia64 first, since those are the minimally-working
ports. Other architecture porters, please feel free to add the relevant
gunk for your platform).
Reviewed by: jhb, obrien
2001-02-22 11:14:25 +00:00
|
|
|
.include <bsd.cpu.mk>
|
|
|
|
|
1998-08-29 01:30:13 +00:00
|
|
|
.if exists(/etc/make.conf.local)
|
1999-10-27 19:24:49 +00:00
|
|
|
.error Error, original /etc/make.conf should be moved to the /etc/defaults/ directory and /etc/make.conf.local should be renamed to /etc/make.conf.
|
1998-08-29 01:30:13 +00:00
|
|
|
.include </etc/make.conf.local>
|
|
|
|
.endif
|
|
|
|
|
|
|
|
|
1998-06-12 10:52:52 +00:00
|
|
|
.include <bsd.own.mk>
|