diff options
author | H. Peter Anvin <hpa@zytor.com> | 2014-01-18 16:09:19 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2014-01-18 16:09:19 -0800 |
commit | 374a37434fa11bdc95e0bc243aadb7de36bbbf43 (patch) | |
tree | d2d4da1ca1a42a301cef1325cfa27576f93306a8 /mtools/Makefile | |
parent | 80c0c5f04a1d822409ecaa19ef390ec29bd15151 (diff) | |
download | syslinux-374a37434fa11bdc95e0bc243aadb7de36bbbf43.tar.gz syslinux-374a37434fa11bdc95e0bc243aadb7de36bbbf43.tar.xz syslinux-374a37434fa11bdc95e0bc243aadb7de36bbbf43.zip |
Makefiles: don't include *.tmp
Since checkin:
bd09a6d828fa Major Makefile cleanups; gcc 4.3.0 compatiblity
... we include *.tmp into the Makefiles as well as .*.d. This seems
to have been a mistake in made when adding *.tmp to cleanup rules,
probably using a sed script.
This causes problems, because *.tmp files are generated by the gcc_ok
macro and do not contain Makefile rules at all.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'mtools/Makefile')
-rwxr-xr-x | mtools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mtools/Makefile b/mtools/Makefile index 78cea1e2..61e19f71 100755 --- a/mtools/Makefile +++ b/mtools/Makefile @@ -47,4 +47,4 @@ strip: %.s: %.c $(CC) $(UMAKEDEPS) $(CFLAGS) -S -o $@ $< --include .*.d *.tmp +-include .*.d |