xref: /freebsd/lib/libc/quad/TESTS/Makefile (revision aa24f48b361effe51163877d84f1b70d32b77e04)
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