$@ -> ${.TARGET}

This commit is contained in:
Warner Losh 1998-09-11 05:34:37 +00:00
parent df196cc87c
commit aa1b326112
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39060

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}