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
|