diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-02 19:06:04 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-02 19:06:04 +0000 |
commit | 186df561f20e8ff3f8c74f3f4ef6ac29f67485e2 (patch) | |
tree | 8e23f01a9975fe3c59d7ee922be9e679137c65e3 /sys/arch/hppa/spmath/Makefile.inc | |
parent | 387f724d77fa7589fc76165f07621db9817fb9b1 (diff) |
ansi and fancy gcc
Diffstat (limited to 'sys/arch/hppa/spmath/Makefile.inc')
-rw-r--r-- | sys/arch/hppa/spmath/Makefile.inc | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/sys/arch/hppa/spmath/Makefile.inc b/sys/arch/hppa/spmath/Makefile.inc deleted file mode 100644 index 871020addda..00000000000 --- a/sys/arch/hppa/spmath/Makefile.inc +++ /dev/null @@ -1,40 +0,0 @@ -# $OpenBSD: Makefile.inc,v 1.1 1998/06/23 20:33:50 mickey Exp $ -# -# NOTE: $S must correspond to the top of the 'sys' tree - -SPMATHDIR= $S/arch/hppa/spmath - -SPMATHDST?= ${.OBJDIR}/lib/spmath -SPMATH_AS?= obj - -SPMATHLIB= ${SPMATHDST}/libspmath.o -SPMATHLIB_PROF= ${SPMATHDST}/libspmath_p.o - -SPMATHMAKE= \ - cd ${SPMATHDIR} && MAKEOBJDIR=${SPMATHDST} ${MAKE} \ - CC='${CC}' CFLAGS='${CFLAGS}' \ - AS='${AS}' AFLAGS='${AFLAGS}' \ - LD='${LD}' STRIP='${STRIP}' \ - CPP='${CPP}' STRIP='${STRIP}' AR='${AR}' \ - NM='${NM}' LORDER='${LORDER}' \ - XMACHINE='${MACHINE}' XMACHINE_ARCH='${MACHINE_ARCH}' \ - SPMATHCPPFLAGS='${CPPFLAGS:S@^-I.@-I../../.@g}' - -${SPMATHLIB}: .NOTMAIN __always_make_kernlib - @echo making sure the kern library is up to date... - @${SPMATHMAKE} libkern.o - -${SPMATHLIB_PROF}: .NOTMAIN __always_make_kernlib - @echo making sure the profiled kern library is up to date... - @${SPMATHMAKE} libkern.po - -clean:: .NOTMAIN __always_make_kernlib - @echo cleaning the kern library objects - @${SPMATHMAKE} clean - -depend:: .NOTMAIN __always_make_kernlib - @echo depending the kern library objects - @${SPMATHMAKE} depend - -__always_make_kernlib: .NOTMAIN - -mkdir -p ${SPMATHDST} |