translit
|
1251-alt.rus,
1251-k8.rus,
Makefile,
Makefile.os2,
Makefile.unx,
alt-1251.rus,
alt-gos.rus,
alt-koi8.rus,
announcement,
binaries_for_SunOS_5.4,
example.alt,
example.alt.uu,
example.ko8.uu,
example.pho,
example.tex,
gos-alt.rus,
gos-koi8.rus,
hex-text.rus,
k8-1251.rus,
k8-tavtt.rus,
koi7-8.rus,
koi7nl-8.rus,
koi8-7.rus,
koi8-alt.rus,
koi8-gos.rus,
koi8-lc.rus,
koi8-ltx.rus,
koi8-phg.rus,
koi8-php.rus,
koi8-tex.rus,
koi8-win.rus,
old-version-1.00,
old-version-1.01,
old-version-1.02,
paths.h,
phg-koi8.rus,
pho-8sim.rus,
pho-koi8.rus,
php-koi8.rus,
readme.doc,
reg_exp.c,
reg_exp.h,
reg_sub.c,
tex-koi8.rus,
translit-sun4,
translit.1,
translit.c,
translit.ps,
translit.tar.Z,
translit.txt,
translit.zip,
|
|
|
# Makfile for translit contributed by Dominik Wujastyk
# Modified to provide UNIX compilation and commented by
# Jan Labanowski
# Read comments in the Makefile and modify it to suit your needs
# When modifying, remember that you need to start all dependencies lines
# (lines which have colon ":" in them) from the first column, and
# lines below them have to start with a TAB character.
#
# Before you can make translit, you need to modify path.h file.
#
CC=cc
OBJS=translit.o reg_exp.o reg_sub.o
translit: $(OBJS)
$(CC) -O -o translit $(OBJS) # line has initial tab
# Dependencies
translit.o : translit.c paths.h reg_exp.h
reg_exp.o : reg_exp.c paths.h reg_exp.h
reg_sub.o : reg_sub.c paths.h reg_exp.h
clean:
rm *.o # line has initial tab
|