Changes since 20181221 are mostly portability related hence the large gap in versions imported. There are however some bug fixes, and a rework of filemon handling. In NetBSD make/filemon/filemon_ktrace.c allows use of fktrace and elimination of filemon(4) which has not had the TLC it needs. FreeBSD filemon(4) is in much better shape, so bmake/filemon/filemon_dev.c allows use of that, with a bit less overhead than the ktrace model. Summary of changes from ChangeLog o str.c: empty string does not match % pattern plus unit-test changes o var.c: import handling of old sysV style modifier using '%' o str.c: refactor brk_string o meta.c: meta_oodate, CHECK_VALID_META is too aggressive for CMD a blank command is perfectly valid. o meta.c: meta_oodate, check for corrupted meta file earlier and more often. * meta.c: meta_compat_parent check for USE_FILEMON patch from Soeren Tempel o meta.c: fix compat mode, need to call meta_job_output() o job.c: extra fds for meta mode not needed if using filemon_dev o meta.c: avoid passing NULL to filemon_*() when meta_needed() returns FALSE. o filemon/filemon_{dev,ktrace}.c: allow selection of filemon implementation. filemon_dev.c uses the kernel module while filemon_ktrace.c leverages the fktrace api available in NetBSD. filemon_ktrace.c can hopefully form the basis for adding support for other tracing mechanisms such as strace on Linux. o meta.c: when target is out-of-date per normal make rules record value of .OODATE in meta file. o parse.c: don't pass NULL to realpath(3) some versions cannot handle it. o parse.c: ParseDoDependency: free paths rather than assert plus more unit-tests
188 lines
3.4 KiB
Makefile
188 lines
3.4 KiB
Makefile
# $Id: Linux.mk,v 1.10 2020/04/17 21:08:17 sjg Exp $
|
|
# $NetBSD: sys.mk,v 1.19.2.1 1994/07/26 19:58:31 cgd Exp $
|
|
# @(#)sys.mk 5.11 (Berkeley) 3/13/91
|
|
|
|
OS?= Linux
|
|
unix?= We run ${OS}.
|
|
|
|
ROOT_GROUP= root
|
|
|
|
# would be better to work out where it is...
|
|
LIBCRT0= /dev/null
|
|
|
|
NEED_SOLINKS=yes
|
|
|
|
.SUFFIXES: .out .a .ln .o .c ${CXX_SUFFIXES} .F .f .r .y .l .s .S .cl .p .h .sh .m4
|
|
|
|
.LIBS: .a
|
|
|
|
AR= ar
|
|
ARFLAGS= rl
|
|
RANLIB= ranlib
|
|
|
|
AS= as
|
|
AFLAGS=
|
|
COMPILE.s= ${AS} ${AFLAGS}
|
|
LINK.s= ${CC} ${AFLAGS} ${LDFLAGS}
|
|
COMPILE.S= ${CC} ${AFLAGS} ${CPPFLAGS} -c
|
|
LINK.S= ${CC} ${AFLAGS} ${CPPFLAGS} ${LDFLAGS}
|
|
.if exists(/usr/local/bin/gcc)
|
|
CC= gcc -pipe
|
|
DBG= -O -g
|
|
STATIC?= -static
|
|
.else
|
|
CC= cc -pipe
|
|
DBG= -g
|
|
STATIC= -Bstatic
|
|
.endif
|
|
CFLAGS= ${DBG}
|
|
COMPILE.c= ${CC} ${CFLAGS} ${CPPFLAGS} -c
|
|
LINK.c= ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}
|
|
|
|
CXX= g++
|
|
CXXFLAGS= ${CFLAGS}
|
|
COMPILE.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} -c
|
|
LINK.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${LDFLAGS}
|
|
|
|
CPP= cpp
|
|
.if defined(DESTDIR)
|
|
CPPFLAGS+= -nostdinc -idirafter ${DESTDIR}/usr/include
|
|
.endif
|
|
|
|
MK_DEP= mkdeps.sh -N
|
|
FC= f77
|
|
FFLAGS= -O
|
|
RFLAGS=
|
|
COMPILE.f= ${FC} ${FFLAGS} -c
|
|
LINK.f= ${FC} ${FFLAGS} ${LDFLAGS}
|
|
COMPILE.F= ${FC} ${FFLAGS} ${CPPFLAGS} -c
|
|
LINK.F= ${FC} ${FFLAGS} ${CPPFLAGS} ${LDFLAGS}
|
|
COMPILE.r= ${FC} ${FFLAGS} ${RFLAGS} -c
|
|
LINK.r= ${FC} ${FFLAGS} ${RFLAGS} ${LDFLAGS}
|
|
|
|
LEX= lex
|
|
LFLAGS=
|
|
LEX.l= ${LEX} ${LFLAGS}
|
|
|
|
LD= ld
|
|
LDFLAGS=
|
|
|
|
LINT= lint
|
|
LINTFLAGS= -chapbx
|
|
|
|
PC= pc
|
|
PFLAGS=
|
|
COMPILE.p= ${PC} ${PFLAGS} ${CPPFLAGS} -c
|
|
LINK.p= ${PC} ${PFLAGS} ${CPPFLAGS} ${LDFLAGS}
|
|
|
|
YACC= yacc
|
|
YFLAGS= -d
|
|
YACC.y= ${YACC} ${YFLAGS}
|
|
|
|
# C
|
|
.c:
|
|
${LINK.c} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
|
|
.c.o:
|
|
${COMPILE.c} ${.IMPSRC}
|
|
.c.a:
|
|
${COMPILE.c} ${.IMPSRC}
|
|
${AR} ${ARFLAGS} $@ $*.o
|
|
rm -f $*.o
|
|
|
|
# C++
|
|
${CXX_SUFFIXES}:
|
|
${LINK.cc} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
|
|
${CXX_SUFFIXES:%=%.o}:
|
|
${COMPILE.cc} ${.IMPSRC}
|
|
${CXX_SUFFIXES:%=%.a}:
|
|
${COMPILE.cc} ${.IMPSRC}
|
|
${AR} ${ARFLAGS} $@ $*.o
|
|
rm -f $*.o
|
|
|
|
# Fortran/Ratfor
|
|
.f:
|
|
${LINK.f} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
|
|
.f.o:
|
|
${COMPILE.f} ${.IMPSRC}
|
|
.f.a:
|
|
${COMPILE.f} ${.IMPSRC}
|
|
${AR} ${ARFLAGS} $@ $*.o
|
|
rm -f $*.o
|
|
|
|
.F:
|
|
${LINK.F} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
|
|
.F.o:
|
|
${COMPILE.F} ${.IMPSRC}
|
|
.F.a:
|
|
${COMPILE.F} ${.IMPSRC}
|
|
${AR} ${ARFLAGS} $@ $*.o
|
|
rm -f $*.o
|
|
|
|
.r:
|
|
${LINK.r} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
|
|
.r.o:
|
|
${COMPILE.r} ${.IMPSRC}
|
|
.r.a:
|
|
${COMPILE.r} ${.IMPSRC}
|
|
${AR} ${ARFLAGS} $@ $*.o
|
|
rm -f $*.o
|
|
|
|
# Pascal
|
|
.p:
|
|
${LINK.p} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
|
|
.p.o:
|
|
${COMPILE.p} ${.IMPSRC}
|
|
.p.a:
|
|
${COMPILE.p} ${.IMPSRC}
|
|
${AR} ${ARFLAGS} $@ $*.o
|
|
rm -f $*.o
|
|
|
|
# Assembly
|
|
.s:
|
|
${LINK.s} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
|
|
.s.o:
|
|
${COMPILE.s} -o ${.TARGET} ${.IMPSRC}
|
|
.s.a:
|
|
${COMPILE.s} ${.IMPSRC}
|
|
${AR} ${ARFLAGS} $@ $*.o
|
|
rm -f $*.o
|
|
.S:
|
|
${LINK.S} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
|
|
.S.o:
|
|
${COMPILE.S} ${.IMPSRC}
|
|
.S.a:
|
|
${COMPILE.S} ${.IMPSRC}
|
|
${AR} ${ARFLAGS} $@ $*.o
|
|
rm -f $*.o
|
|
|
|
# Lex
|
|
.l:
|
|
${LEX.l} ${.IMPSRC}
|
|
${LINK.c} -o ${.TARGET} lex.yy.c ${LDLIBS} -ll
|
|
rm -f lex.yy.c
|
|
.l.c:
|
|
${LEX.l} ${.IMPSRC}
|
|
mv lex.yy.c ${.TARGET}
|
|
.l.o:
|
|
${LEX.l} ${.IMPSRC}
|
|
${COMPILE.c} -o ${.TARGET} lex.yy.c
|
|
rm -f lex.yy.c
|
|
|
|
# Yacc
|
|
.y:
|
|
${YACC.y} ${.IMPSRC}
|
|
${LINK.c} -o ${.TARGET} y.tab.c ${LDLIBS}
|
|
rm -f y.tab.c
|
|
.y.c:
|
|
${YACC.y} ${.IMPSRC}
|
|
mv y.tab.c ${.TARGET}
|
|
.y.o:
|
|
${YACC.y} ${.IMPSRC}
|
|
${COMPILE.c} -o ${.TARGET} y.tab.c
|
|
rm -f y.tab.c
|
|
|
|
# Shell
|
|
.sh:
|
|
rm -f ${.TARGET}
|
|
cp ${.IMPSRC} ${.TARGET}
|