bios: Remove shuffle and boot comapi call
[syslinux/sherbszt.git] / codepage / Makefile
blob18a590f3c8ee6a9a5d7bf1dd6853749443d99e7e
1 VPATH = $(SRC)
2 PERL = perl
3 CPSRC = $(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