The wrapper executable is only useful when building Syslinux. It
shouldn't be distributed outside of the build directories, so remove
it in the 'tidy dist' target.
Also add a 'strip' target which is required when building a release.
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
mkdir -m 755 -p $(INSTALLROOT)$(AUXDIR)/efi$(BITS)
install -m 755 $(BTARGET) $(INSTALLROOT)$(AUXDIR)/efi$(BITS)
+strip:
+
tidy dist:
- rm -f *.so *.o
+ rm -f *.so *.o wrapper
find . \( -name \*.o -o -name \*.a -o -name .\*.d -o -name \*.tmp \) -print0 | \
xargs -0r rm -f
clean: tidy
spotless: clean
- rm -f $(BTARGET) wrapper
+ rm -f $(BTARGET)