diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-06 00:08:13 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-06 00:09:58 -0700 |
commit | af06a0d5ae28673eb7927b29cd92a4f30d882d92 (patch) | |
tree | be170c8e49c7e40e66c8797b3dcdc643c53669d6 /codepage/Makefile | |
parent | 3bccdf02682afec39d253aeec25a376c7573486d (diff) | |
download | syslinux-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/Makefile')
-rw-r--r-- | codepage/Makefile | 10 |
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 $< $@ |