Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11
# @(#)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}