summaryrefslogtreecommitdiff
path: root/codepage/Makefile
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-09 12:21:05 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-09 16:14:44 -0700
commite74dc5c074f683d6b8ab71f9434533a6c74bdf43 (patch)
treed8794c12d0a25df935f49c8da81bc9c26ca40f86 /codepage/Makefile
parent78de189bb80b89f63d9bcac8c26c69ab4f913c89 (diff)
downloadsyslinux-e74dc5c074f683d6b8ab71f9434533a6c74bdf43.tar.gz
FAT: make all codepage data derived from the same place
Make the codepage data all derive from the Unicode tables, and create files that could be dynamically loaded in the future.
Diffstat (limited to 'codepage/Makefile')
-rw-r--r--codepage/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/codepage/Makefile b/codepage/Makefile
index d426eaad..5495a6a7 100644
--- a/codepage/Makefile
+++ b/codepage/Makefile
@@ -1,16 +1,16 @@
PERL = perl
CPSRC = $(wildcard *.txt)
-GENFILES = $(patsubst %.txt,%.bin,$(CPSRC))
+GENFILES = $(patsubst %.txt,%.cp,$(CPSRC))
-.SUFFIXES: .txt .bin
+.SUFFIXES: .txt .cp
all: $(GENFILES)
-%.bin: %.txt cptable.pl UnicodeData
+%.cp: %.txt cptable.pl UnicodeData
$(PERL) cptable.pl UnicodeData $< $@
tidy:
- rm -f $(GENFILES)
+ rm -f *.cp *.bin
clean: tidy