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 52 53 54 55 56 57 58 59 60 61 62 63 64
|
default: all
all:
aclocal -I ./aclocal
autoheader
automake --foreign --copy --add-missing
autoconf
[ `which cvs2cl` ] && cvs2cl -S --no-wrap -P || touch ChangeLog
dist:
aclocal -I ./aclocal
autoheader
automake --foreign --copy --add-missing --include-deps
autoconf
[ `which cvs2cl` ] && cvs2cl -S --no-wrap -P || touch ChangeLog
rm -Rf `find . -type d -name CVS`
rm -f `find . -type f -name .cvsignore`
clean:
rm -rf \
ChangeLog \
ChangeLog.bak \
Makefile \
Makefile.in \
aclocal.m4 \
build-stamp \
config.cache \
config.guess \
config.h \
config.h.in \
config.log \
config.status \
config.sub \
configure \
debian/files \
debian/tpb \
debian/tpb.postinst.debhelper \
debian/tpb.postrm.debhelper \
debian/tpb.prerm.debhelper \
debian/tpb.substvars \
debian/usr \
doc/Makefile \
doc/Makefile.in \
install-sh \
intl/Makefile \
man/Makefile \
man/Makefile.in \
missing \
mkinstalldirs \
po/Makefile \
po/Makefile.in \
po/POTFILES \
po/da.gmo \
po/de.gmo \
po/ru.gmo \
src/.deps \
src/Makefile \
src/Makefile.in \
src/cfg.o \
src/tpb \
src/tpb.o \
stamp-h \
stamp-h.in \
|