File: Makefile

package info (click to toggle)
chinput 3.0.2-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,124 kB
  • ctags: 2,806
  • sloc: ansic: 52,549; makefile: 165; perl: 23
file content (51 lines) | stat: -rw-r--r-- 1,160 bytes parent folder | download | duplicates (3)
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
45
46
47
48
49
50
51
###
### This file is part of
###
###                        TurboLinux  ZWinPro
###
###                 Copyright (C) 1999 TurboLinux, Inc. 
###                        All Rights Reserved
### Distributed under the terms of the GNU General Public License (GPL)
###
###
### Authors:     TurboLinux Chinese Development Team:
###              Justin Yu   <justiny@turbolinux.com.cn>
###              Sean Chen   <seanc@turbolinux.com.cn>
###              Daniel Fang <danf@turbolinux.com.cn>
###		 Arthur Que <arthur@turbolinux.com.cn>
### WWW:         http://www.turbolinux.com.cn/ZWinPro/
### FTP:         ftp://ftp.turbolinux.com.cn/pub/ZWinPro/
###

prefix=/usr

all: chinput handwriting-engine

nowrap: chinput_nowrap

chinput:
	cd src; make

handwriting-engine:
	cd handwriting; make

testprgs:
	cd test; make

input/table/Table.cit: input/table/Table.tit
	cd input/table; make

install: all
	cd src; make install
	cd resource; make install
	cd handwriting; make install

install-doc:
	mkdir -p $(prefix)/lib/ZWinPro/Chinput
	cp -f doc/* $(prefix)/lib/ZWinPro/Chinput

clean:
	rm -f *.bak
	cd src; make clean
	cd handwriting; make clean
	cd test; make clean