File: Makefile

package info (click to toggle)
cgal 4.0-5
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 65,068 kB
  • sloc: cpp: 500,870; ansic: 102,544; sh: 321; python: 92; makefile: 75; xml: 2
file content (14 lines) | stat: -rw-r--r-- 407 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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