$@ -> ${.TARGET}

This commit is contained in:
Warner Losh 1998-09-11 05:34:37 +00:00
parent df196cc87c
commit aa1b326112

View File

@ -4,8 +4,8 @@ all: mul divrem
MUL= mul.c ../muldi3.c
mul: ${MUL}
gcc -g -DSPARC_XXX ${MUL} -o $@
gcc -g -DSPARC_XXX ${MUL} -o ${.TARGET}
DIVREM= divrem.c ../qdivrem.c
divrem: ${DIVREM}
gcc -g -DSPARC_XXX ${DIVREM} -o $@
gcc -g -DSPARC_XXX ${DIVREM} -o ${.TARGET}