mirror of https://github.com/CGAL/cgal
- Getting rid of check_headers.pl .
This commit is contained in:
parent
0c7c2237af
commit
b8ee2fa43b
|
|
@ -1,4 +1,4 @@
|
|||
# Makefile for CGAL's Interval Arithmetic package. [Sylvain Pion]
|
||||
# Makefile for a CGAL package.
|
||||
|
||||
CVS_MODULE_NAME=Cartesian_basic
|
||||
Package=Cartesian_basic
|
||||
|
|
@ -16,7 +16,7 @@ package: clean $(Package).tar.gz
|
|||
@echo "---- changes.txt ----"
|
||||
@echo "---- make Test ----"
|
||||
@echo "---- make VERSION=x.x version ----"
|
||||
@echo "---- make commit ----"
|
||||
@echo "---- make commit ----"
|
||||
@echo "---- make VERSION=x.x rtag ----"
|
||||
@echo "---- make submit ----"
|
||||
@echo "----------------------------------"
|
||||
|
|
@ -37,20 +37,16 @@ submit: package
|
|||
echo "submission::" >> $(TMP_file)
|
||||
echo "http://www-sop.inria.fr/prisme/CGAL/DR:/Members" >> $(TMP_file)
|
||||
echo "/$(Package)/$(Package).tar.gz" >> $(TMP_file)
|
||||
mail -s autohandle cgal-submit@cs.uu.nl < $(TMP_file)
|
||||
mail -s autohandle cgal-submit@cs.uu.nl $(USER) < $(TMP_file)
|
||||
rm -f $(TMP_file)
|
||||
|
||||
clean:
|
||||
rm -f $(Package).tar.gz
|
||||
|
||||
$(Package).tar.gz:
|
||||
./check_headers.pl -u include/CGAL/*.[Ch]
|
||||
./check_headers.pl -u include/CGAL/*/*.[Ch]
|
||||
tar -zcvf $(Package).tar.gz \
|
||||
--exclude=CVS --exclude=wrapper.tex --exclude=Makefile \
|
||||
--exclude=TODO \
|
||||
--exclude=TODO --exclude="*~" --exclude="*.old" \
|
||||
version maintainer \
|
||||
long_description.txt description.txt changes.txt \
|
||||
include
|
||||
./check_headers.pl -u include/CGAL/*.[Ch]
|
||||
./check_headers.pl -u include/CGAL/*/*.[Ch]
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
Version 3.9 (?? Juin 00)
|
||||
- Re-added headers, got rid of check_headers.pl [syl].
|
||||
|
||||
Version 3.8 (15 Juin 00)
|
||||
- Fixed typo in Cartesian.h : Transform_2 -> Transform_3 [syl].
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
#!/usr/local/bin/perl -w
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
use strict;
|
||||
#use Cwd;
|
||||
use File::Copy;
|
||||
#use File::Copy;
|
||||
#use File::Basename;
|
||||
#use File::Find;
|
||||
use Getopt::Std;
|
||||
|
|
@ -68,11 +68,11 @@ sub add_header($$$$$$$)
|
|||
print TEMPFILE "// ", '-' x 70,"\n";
|
||||
print TEMPFILE <<"END_OF_HEADER";
|
||||
//
|
||||
// release : $version
|
||||
// release_date : $date//
|
||||
// release :
|
||||
// release_date :
|
||||
//
|
||||
// file : $full_filename
|
||||
// package : $package
|
||||
$revision$revision_date$authors// coordinator : INRIA Sophia-Antipolis (Herve.Bronnimann\@sophia.inria.fr)
|
||||
$revision$revision_date$authors// coordinator : INRIA Sophia-Antipolis (Mariette.Yvinec\@sophia.inria.fr)
|
||||
//
|
||||
END_OF_HEADER
|
||||
print TEMPFILE "// ", '=' x 70,"\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue