From ad1bb0b0bd383dcf315664972b46cecbc08ca721 Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Thu, 5 Aug 1999 18:27:52 +0000 Subject: [PATCH] - Merged with the Static_filter. - Added -l option. --- .../include/CGAL/Arithmetic_filter/Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Packages/Interval_arithmetic/include/CGAL/Arithmetic_filter/Makefile b/Packages/Interval_arithmetic/include/CGAL/Arithmetic_filter/Makefile index d64bda21cfa..86f1b3a615a 100644 --- a/Packages/Interval_arithmetic/include/CGAL/Arithmetic_filter/Makefile +++ b/Packages/Interval_arithmetic/include/CGAL/Arithmetic_filter/Makefile @@ -8,6 +8,7 @@ # Tell where the script is. SCRIPT = ../../../examples/Interval_arithmetic/filtered_predicate_converter +BASE = $(CGAL)/include/CGAL # Tell which files must be treated. OBJECTS = predicates_on_ftC2.h \ @@ -19,13 +20,15 @@ OBJECTS = predicates_on_ftC2.h \ predicates/Regular_triangulation_rtH3.h \ predicates/in_smallest_orthogonalcircle_ftC2.h +ALL_DEP = $(BASE)/predicates/sign_of_determinant.h + #### Don't touch below. -% :: $(CGAL)/include/CGAL/% $(SCRIPT) - $(SCRIPT) -p < $< > $@ +% :: $(BASE)/% $(SCRIPT) + perl $(SCRIPT) -p -d $(ALL_DEP) -l static_infos/$@ -i $< -o $@ -predicates/% : $(CGAL)/include/CGAL/predicates/% $(SCRIPT) - $(SCRIPT) -p < $< > $@ +predicates/% : $(BASE)/predicates/% $(SCRIPT) + perl $(SCRIPT) -p -d $(ALL_DEP) -l static_infos/$@ -i $< -o $@ all: $(OBJECTS)