Changeset 469 for trunk/zoo-project/zoo-services/cgal/Makefile
- Timestamp:
- May 1, 2014, 1:28:14 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-services/cgal/Makefile
r284 r469 1 ZRPATH=../.. /..1 ZRPATH=../.. 2 2 include ${ZRPATH}/zoo-kernel/ZOOMakefile.opts 3 3 CFLAGS=${ZOO_CFLAGS} ${XML2CFLAGS} ${GDAL_CFLAGS} ${PYTHONCFLAGS} -DLINUX_FREE_ISSUE #-DDEBUG 4 4 CC=gcc 5 5 6 cgi-env/cgal_service.zo: service.c 7 g++ ${CFLAGS} -shared -fpic -o cgi-env/cgal_service.zo ./service.c ${GDAL_LIBS} ${MACOS_LD_FLAGS} -lCGAL 6 cgi-env/cgal_service.zo: delaunay.c voronoi.c cgal_service.o 7 g++ ${CFLAGS} -c ./delaunay.c 8 g++ ${CFLAGS} -c ./voronoi.c 9 g++ ${CFLAGS} -shared -fpic -o cgi-env/cgal_service.zo ./delaunay.o ./voronoi.o ./cgal_service.o ${GDAL_LIBS} ${MACOS_LD_FLAGS} -lCGAL -lgmp 10 11 cgal_service.o: cgal_service.c cgal_service.h 12 g++ ${CFLAGS} -c ./cgal_service.c 13 8 14 9 15 clean: 10 rm -f cgi-env/*.zo 16 rm -f cgi-env/*.zo *.o
Note: See TracChangeset
for help on using the changeset viewer.