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
|
## Process this file with automake to produce Makefile.in
# For non-gcc compilers, change the options to "no-dependencies"
AUTOMAKE_OPTIONS = foreign dist-zip
#AUTOMAKE_OPTIONS = foreign dist-zip no-dependencies
SUBDIRS = utils include src doc tests adie pathfinder calculator
EXTRA_DIST = ADDITIONS AUTHORS INSTALL LICENSE TRACING README fox.lsm index.html aclocal.m4
CLEANFILES = fox.tar.gz
snapshot: dist-all
cp $(distdir).tar.gz /home/ftp/pub/fox-snapshot.tar.gz
cp $(distdir).zip /home/ftp/pub/fox-snapshot.zip
web: distdir
cp -r $(distdir)/doc/* /home/html
drop: dist-all
cp $(distdir).tar.gz /home/ftp/pub
cp $(distdir).zip /home/ftp/pub
cd /home/ftp/pub && ln -sf $(distdir).tar.gz fox-latest.tar.gz
cd /home/ftp/pub && ln -sf $(distdir).zip fox-latest.zip
diff: distdir
-diff -P -c -r fox-1.0.9 $(distdir) > fox-patch-1.0.9-$(distdir)
bak:
tar cvzf fox-cvs.tar.gz /mnt/zip/FOX
dist-hook:
cp fox.spec $(distdir)
cp -dpR windows $(distdir)/windows
|