aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@intel.com>2013-07-12 10:21:48 +0100
committerMatt Fleming <matt.fleming@intel.com>2013-07-12 10:25:38 +0100
commit89d98dfdc7e195e84dca64fd24b4505e16769b07 (patch)
treef351ac7aa84283038c75439139637338c0bb66a0
parent6ff0a531eaec6b11843df9b9393ebf8fc0f171f4 (diff)
downloadsyslinux-89d98dfdc7e195e84dca64fd24b4505e16769b07.tar.gz
syslinux-89d98dfdc7e195e84dca64fd24b4505e16769b07.tar.xz
syslinux-89d98dfdc7e195e84dca64fd24b4505e16769b07.zip
cmenu: only the spotless target should delete *.c32
If distribution package maintainers follow the advice in doc/distrib.txt for rebuilding the installers, they'll currently hit the following error when executing 'make install' install: cannot stat ‘com32/cmenu/libmenu/*.c32’: No such file or directory Follow what every other module does and only delete .c32 files for the spotless target. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
-rw-r--r--com32/cmenu/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile
index f4321366..5334a6bd 100644
--- a/com32/cmenu/Makefile
+++ b/com32/cmenu/Makefile
@@ -57,14 +57,14 @@ tidy dist:
libclean:
rm -f libmenu/*.c32
-clean: tidy menuclean libclean
- rm -f *.lss *.c32 *.com
+clean: tidy menuclean
+ rm -f *.lss *.com
menuclean:
rm -f $(patsubst %.menu,%.c,$(wildcard *.menu))
spotless: clean libclean menuclean
- rm -f *~ \#*
+ rm -f *~ \#* *.c32
menus: $(MENUS)