-
Notifications
You must be signed in to change notification settings - Fork 4
/
makefile
36 lines (29 loc) · 1.27 KB
/
makefile
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
all: doc test
doc: doc/manual.six
doc/manual.six: makedoc.g maketest.g ListOfDocFiles.g \
PackageInfo.g \
doc/MatricesForHomalg.bib doc/*.xml doc/*.css \
gap/*.gd gap/*.gi examples/*.g
gap makedoc.g
clean:
(cd doc ; ./clean)
test: doc
gap maketest.g
archive: test
(mkdir -p ../tar; cd ..; tar czvf tar/MatricesForHomalg.tar.gz --exclude ".DS_Store" --exclude "*~" MatricesForHomalg/doc/*.* MatricesForHomalg/doc/clean MatricesForHomalg/gap/*.{gi,gd} MatricesForHomalg/{CHANGES,PackageInfo.g,README,VERSION,init.g,read.g,makedoc.g,makefile,maketest.g,ListOfDocFiles.g} MatricesForHomalg/examples/*.g)
WEBPOS=public_html
WEBPOS_FINAL=~/Sites/homalg-project/MatricesForHomalg
towww: archive
echo '<?xml version="1.0" encoding="UTF-8"?>' >${WEBPOS}.version
echo '<mixer>' >>${WEBPOS}.version
cat VERSION >>${WEBPOS}.version
echo '</mixer>' >>${WEBPOS}.version
cp PackageInfo.g ${WEBPOS}
cp README ${WEBPOS}/README.MatricesForHomalg
cp doc/manual.pdf ${WEBPOS}/MatricesForHomalg.pdf
cp doc/*.{css,html} ${WEBPOS}
rm -f ${WEBPOS}/*.tar.gz
mv ../tar/MatricesForHomalg.tar.gz ${WEBPOS}/MatricesForHomalg-`cat VERSION`.tar.gz
rm -f ${WEBPOS_FINAL}/*.tar.gz
cp ${WEBPOS}/* ${WEBPOS_FINAL}
ln -s MatricesForHomalg-`cat VERSION`.tar.gz ${WEBPOS_FINAL}/MatricesForHomalg.tar.gz