diff options
Diffstat (limited to 'sys/alpha/conf/Makefile')
-rw-r--r-- | sys/alpha/conf/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/alpha/conf/Makefile b/sys/alpha/conf/Makefile index 72308f9..08947a9 100644 --- a/sys/alpha/conf/Makefile +++ b/sys/alpha/conf/Makefile @@ -6,5 +6,6 @@ all: clean: rm -f LINT -LINT: ../../conf/NOTES NOTES ../../conf/makeLINT.sed - cat ../../conf/NOTES NOTES | sed -E -n -f ../../conf/makeLINT.sed > LINT +NOTES= ../../conf/NOTES NOTES +LINT: ${NOTES} ../../conf/makeLINT.sed + cat ${NOTES} | sed -E -n -f ../../conf/makeLINT.sed > ${.TARGET} |