- Merged with the Static_filter.

- Added -l option.
This commit is contained in:
Sylvain Pion 1999-08-05 18:27:52 +00:00
parent 3ced384c6e
commit ad1bb0b0bd
1 changed files with 7 additions and 4 deletions

View File

@ -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)