-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
45 lines (37 loc) · 982 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Makefile for FreePWING version of EIJIRO
#
# this makefile is designed for GNU make.
# copyright (c) 2000, Rei <[email protected]>. all rights reserved.
#
#
# customizable values.
# pls change to fit your environment or as you like.
#
#
# EIJIROVER, SRCDIR, SRCFILE:
# the EIJIRO files to be converted.
#
EIJIROVER = 1448
SRCDIR = .
SRCFILE = ${SRCDIR}/EIJIRO-${EIJIROVER}.TXT
#
# CHARSET:
# specify the charset for the output strings. it is just used to print
# progress. if not specified, 'sjis' is used on Windows or 'euc' on other
# environment. possible charsets are same as Jcode.pm.
#
#CHARSET = euc
#
# end of customizable variables.
#
CATSRC = catalogs.txt
PACKAGE = eijiro-fpw-1.1
ARCHIVEEXTRA = README COPYING ChangeLog copyright.txt ${CATSRC}
CLEANEXTRA =
DIR = eijiro
FPWPARSER = eijiro-fpw.pl
FPWPARSERFLAGS = -c "${CHARSET}" "${SRCFILE}"
# fpwutils.mk must be located in one of the make include directories or
# you should user -I option.
include fpwutils.mk