summaryrefslogtreecommitdiff
path: root/codepage
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-06 00:08:13 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-06 00:09:58 -0700
commitaf06a0d5ae28673eb7927b29cd92a4f30d882d92 (patch)
treebe170c8e49c7e40e66c8797b3dcdc643c53669d6 /codepage
parent3bccdf02682afec39d253aeec25a376c7573486d (diff)
downloadsyslinux-af06a0d5ae28673eb7927b29cd92a4f30d882d92.tar.gz
FAT: Support VFAT long filenamessyslinux-3.70-pre13
Initial support for VFAT long filenames; currently hard-coded to codepage 865, no support for other codepages or for accessing files with names which aren't in the current codepage. This hopefully shouldn't be an issue for SYSLINUX applications.
Diffstat (limited to 'codepage')
-rw-r--r--codepage/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/codepage/Makefile b/codepage/Makefile
index ac0b234d..d426eaad 100644
--- a/codepage/Makefile
+++ b/codepage/Makefile
@@ -6,14 +6,14 @@ GENFILES = $(patsubst %.txt,%.bin,$(CPSRC))
all: $(GENFILES)
-tidy:
+%.bin: %.txt cptable.pl UnicodeData
+ $(PERL) cptable.pl UnicodeData $< $@
-clean:
+tidy:
rm -f $(GENFILES)
+clean: tidy
+
dist: tidy
spotless: clean
-
-%.bin: %.txt cptable.pl UnicodeData
- $(PERL) cptable.pl UnicodeData $< $@