Files
cgal/Mesh_3/applications/makefile.dependencies
T
Laurent Rineau f5c912e666 - major switch from .C to .cpp. Andreas's script left a lot of things that
had to be fixed manually.
- new debug macro in <CGAL/Surface_mesher/Standard_criteria.h>
  - CGAL_MESH_3_DEBUG_CRITERIA
  Used in test/Mesh_3/combined_spheres*.cpp
2006-07-10 10:12:38 +00:00

14 lines
265 B
Plaintext

deps:
rm -f .*.deps; $(MAKE) renew_deps
.PHONY: renew_deps
.%.deps: %.cpp
$(CGAL_CXX) $(CXXFLAGS) -M -MG $< | egrep -v '^ +/' > $@
DEPS_FILES = $(addprefix .,$(addsuffix .deps, $(basename $(wildcard *.cpp))))
renew_deps: $(DEPS_FILES)
-include $(DEPS_FILES)