From: Wolfgang Bangerth Date: Mon, 13 Jul 2009 12:28:36 +0000 (+0000) Subject: Make sure we compile everything in debug mode (the file suffixes were wrong). X-Git-Tag: v8.0.0~7493 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46a7cca564f4ab1b2f83da6e11c3a6fa37b1c126;p=dealii.git Make sure we compile everything in debug mode (the file suffixes were wrong). git-svn-id: https://svn.dealii.org/trunk@19066 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/contrib/mesh_conversion/Makefile b/deal.II/contrib/mesh_conversion/Makefile index a61d0399ae..319087f5dc 100755 --- a/deal.II/contrib/mesh_conversion/Makefile +++ b/deal.II/contrib/mesh_conversion/Makefile @@ -5,8 +5,8 @@ CPP = g++ -g -ansi -pedantic -Wall PROG = convert_mesh #SUFFIX RULES -.SUFFIXES: .o .cpp -.cpp.o: +.SUFFIXES: .o .cc +.cc.o: $(CPP) -c $< all: $(PROG)