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