diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-05 16:09:50 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-05 16:09:50 -0700 |
commit | a392e545be782be90ff8df5eaaff12e879fe6fa1 (patch) | |
tree | be6351562bfff649b09532110dfd6f4158f8e5bd /codepage/Makefile | |
parent | 137d0a76204e69eaf5fa6921e6b3599b32a4b4cf (diff) | |
download | syslinux-a392e545be782be90ff8df5eaaff12e879fe6fa1.tar.gz syslinux-a392e545be782be90ff8df5eaaff12e879fe6fa1.tar.xz syslinux-a392e545be782be90ff8df5eaaff12e879fe6fa1.zip |
Add support for creating codepage/Unicode mapping tables
Add support for creating codepage/Unicode mapping tables; this is a
step toward VFAT long filename support.
Diffstat (limited to 'codepage/Makefile')
-rw-r--r-- | codepage/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/codepage/Makefile b/codepage/Makefile new file mode 100644 index 00000000..70e2cf06 --- /dev/null +++ b/codepage/Makefile @@ -0,0 +1,17 @@ +PERL = perl +CPSRC = $(wildcard *.txt) +GENFILES = $(patsubst %.txt,%.bin,$(CPSRC)) + +.SUFFIXES: .txt .bin + +all: $(GENFILES) + +tidy: + +clean: + rm -f $(GENFILES) + +dist: tidy + +%.bin: %.txt cptable.pl UnicodeData + $(PERL) cptable.pl UnicodeData $< $@ |