mirror of https://github.com/CGAL/cgal
15 lines
407 B
Makefile
15 lines
407 B
Makefile
rounding_modes1: rounding_modes1.o
|
|
g++ $^ -o $@
|
|
|
|
rounding_modes2: rounding_modes2.o
|
|
g++ $^ -o $@ -lCGAL -L../../shared/lib
|
|
|
|
rounding_modes1.o: rounding_modes1.cpp
|
|
g++ -c $< -o $@ -O2 -frounding-math $(IEEE_FPU_OPTION)
|
|
|
|
rounding_modes2.o: rounding_modes2.cpp
|
|
g++ -c $< -o $@ -O2 -frounding-math $(IEEE_FPU_OPTION) -I../../include -I../../shared/include
|
|
|
|
clean:
|
|
rm -f *.o rounding_modes1 rounding_modes2
|