aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.osdl.org>2003-08-17 03:16:21 -0700
committerLinus Torvalds <torvalds@home.osdl.org>2003-08-17 03:16:21 -0700
commit664ae6f9a92449e9fa209e6b2cdbde9c1d913ea7 (patch)
treecd75c7172b74babc4dbd733ddda0cb51e587af53 /scripts
parent088205b5aef9f9eee6c442e6e1ecc3d4ad149786 (diff)
downloadhistory-664ae6f9a92449e9fa209e6b2cdbde9c1d913ea7.tar.gz
Fix "make clean" in scripts/genksyms
Don't prepend $(obj) to "targets", since the generic rules will do that for us, and doing it twice just makes things not work.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/genksyms/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genksyms/Makefile b/scripts/genksyms/Makefile
index 6d9e57472fc1fe..ed8b9635e13765 100644
--- a/scripts/genksyms/Makefile
+++ b/scripts/genksyms/Makefile
@@ -44,4 +44,4 @@ clean-files += parse.output
endif
-targets += $(obj)/keywords.c $(obj)/lex.c $(obj)/parse.c $(obj)/parse.h
+targets += keywords.c lex.c parse.c parse.h