From: wolf Date: Wed, 17 Mar 2004 13:27:29 +0000 (+0000) Subject: This is the correct fix: I misspelled ifneq as ifeq. This can't work, X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a8f471cf9bc8b25715f03d0236ba1487a7a3a2f;p=dealii-svn.git This is the correct fix: I misspelled ifneq as ifeq. This can't work, of course. git-svn-id: https://svn.dealii.org/trunk@8804 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-17/Makefile b/deal.II/examples/step-17/Makefile index 5fefc64e55..edd2f61d63 100644 --- a/deal.II/examples/step-17/Makefile +++ b/deal.II/examples/step-17/Makefile @@ -1,11 +1,12 @@ # $Id$ -###################################################################### +################################################################ # This example program will only work if PETSc is installed. If this # is not the case, then simply redefine the main targets to to nothing -ifeq ($(USE_CONTRIB_PETSC),yes) +ifneq ($(USE_CONTRIB_PETSC),yes) default: run: +endif # ################################################################ @@ -159,8 +160,3 @@ Makefile.dep: $(target).cc Makefile \ include Makefile.dep -################################################################ -# If PETSc is not installed nothing needs to be done. -else -default: -endif