1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-23 16:01:42 +00:00
freebsd/lib/libc/quad/TESTS/Makefile
1994-05-27 05:00:24 +00:00

12 lines
208 B
Makefile

# @(#)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 $@