freebsd-dev/lib/libc/quad/TESTS/Makefile
1998-09-11 05:34:37 +00:00

12 lines
224 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 ${.TARGET}
DIVREM= divrem.c ../qdivrem.c
divrem: ${DIVREM}
gcc -g -DSPARC_XXX ${DIVREM} -o ${.TARGET}