dmi: check both the AC and ID flags at the same time
[syslinux/sherbszt.git] / codepage / Makefile
blobaf5258aa5917a7017e17b0b684b642fc328ef6c2
1 VPATH = $(SRC)
2 PERL = perl
3 CPSRC = $(sort $(wildcard $(SRC)/*.txt))
4 CPOBJ = $(notdir $(CPSRC))
5 GENFILES = $(patsubst %.txt,%.cp,$(CPOBJ))
7 .SUFFIXES: .txt .cp
9 all: $(GENFILES)
11 # This generates codepage files where the display and filesystem
12 # codepages are both the same.
13 %.cp: %.txt cptable.pl UnicodeData
14 $(PERL) $(SRC)/cptable.pl $(SRC)/UnicodeData $< $< $@
16 tidy:
17 rm -f *.cp *.bin
19 clean: tidy
21 dist: tidy
23 spotless: clean