Last change
on this file since 26ffad7 was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
427 bytes
|
Rev | Line | |
---|
[e16e8f2] | 1 | VPATH = $(SRC) |
---|
| 2 | PERL = perl |
---|
| 3 | CPSRC = $(wildcard $(SRC)/*.txt) |
---|
| 4 | CPOBJ = $(notdir $(CPSRC)) |
---|
| 5 | GENFILES = $(patsubst %.txt,%.cp,$(CPOBJ)) |
---|
| 6 | |
---|
| 7 | .SUFFIXES: .txt .cp |
---|
| 8 | |
---|
| 9 | all: $(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 | |
---|
| 16 | tidy: |
---|
| 17 | rm -f *.cp *.bin |
---|
| 18 | |
---|
| 19 | clean: tidy |
---|
| 20 | |
---|
| 21 | dist: tidy |
---|
| 22 | |
---|
| 23 | spotless: clean |
---|
Note: See
TracBrowser
for help on using the repository browser.