minix/lib/nbsd_libc/quad/TESTS/Makefile
Gianluca Guida b6cbf7203b Import unmodified NetBSD libc in trunk
This patch imports the unmodified current version of NetBSD libc.
The NetBSD includes are in /nbsd_include, while the libc code itself is 
split between lib/nbsd_libc and common/lib/libc.
2011-02-14 19:36:03 +00:00

13 lines
264 B
Makefile

# $NetBSD: Makefile,v 1.2 1995/02/27 17:31:26 cgd Exp $
# @(#)Makefile 8.1 (Berkeley) 6/4/93
all: mul divrem
MUL= mul.c ../muldi3.c
mul: ${MUL}
gcc -g -DSPARC_XXX ${MUL} -o $@
DIVREM= divrem.c ../qdivrem.c
divrem: ${DIVREM}
gcc -g -DSPARC_XXX ${DIVREM} -o $@