diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-27 18:47:02 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-27 18:47:02 -0700 |
commit | 34763a8075ac5f9a7f5ea3d3e420d1efc67c4441 (patch) | |
tree | 1f61493b6cce359d2f5e106df9516d152b182e9f /Makefile | |
parent | 81fe1de46aa4ae26a08ade0caa851beba47e901e (diff) | |
download | syslinux-34763a8075ac5f9a7f5ea3d3e420d1efc67c4441.tar.gz |
Fix "make clean", "make installer"
- "make clean" should not clean up things that "make installer" cannot
regenerate.
- "make installer" should not descend into subdirectories which are
target only, e.g. com32 and sample.
The Linux platform stuff in com32 is old and bitrotted, and was only
for debugging in the first place. Just ignore it.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,12 +40,12 @@ BOBJECTS = $(BTARGET) \ # BESUBDIRS and IESUBDIRS are "early", i.e. before the root; BSUBDIRS # and ISUBDIRS are "late", after the root. BESUBDIRS = -BSUBDIRS = codepage core memdisk mbr memdump gpxe dos win32 +BSUBDIRS = codepage core memdisk com32 mbr memdump gpxe sample dos win32 ITARGET = IOBJECTS = $(ITARGET) dos/copybs.com utils/gethostip utils/mkdiskimage \ mtools/syslinux linux/syslinux extlinux/extlinux IESUBDIRS = -ISUBDIRS = mtools linux extlinux utils com32 sample +ISUBDIRS = mtools linux extlinux utils # Things to install in /usr/bin INSTALL_BIN = mtools/syslinux |