source: bootcd/isolinux/syslinux-6.03/codepage/Makefile

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 427 bytes
Line 
1VPATH           = $(SRC)
2PERL            = perl
3CPSRC           = $(wildcard $(SRC)/*.txt)
4CPOBJ           = $(notdir $(CPSRC))
5GENFILES        = $(patsubst %.txt,%.cp,$(CPOBJ))
6
7.SUFFIXES: .txt .cp
8
9all: $(GENFILES)
10
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 $< $< $@
15
16tidy:
17        rm -f *.cp *.bin
18
19clean: tidy
20
21dist: tidy
22
23spotless: clean
Note: See TracBrowser for help on using the repository browser.