xref: /freebsd/lib/libc/quad/TESTS/Makefile (revision e8d8bef961a50d4dc22501cde4fb9fb0be1b2532)
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2
3all: mul divrem
4
5MUL=	mul.c ../muldi3.c
6mul: ${MUL}
7	gcc -g -DSPARC_XXX ${MUL} -o ${.TARGET}
8
9DIVREM=	divrem.c ../qdivrem.c
10divrem: ${DIVREM}
11	gcc -g -DSPARC_XXX ${DIVREM} -o ${.TARGET}
12