From 37740c39bf7406f2ba0e9c153d7afffb20edb542 Mon Sep 17 00:00:00 2001
From: Giovanni La Mura <giovanni.lamura@inaf.it>
Date: Thu, 21 Dec 2023 12:09:33 +0100
Subject: [PATCH] Remove C++ only compilation rule

---
 src/Makefile          | 4 ----
 src/cluster/Makefile  | 2 --
 src/sphere/Makefile   | 2 --
 src/trapping/Makefile | 3 ---
 4 files changed, 11 deletions(-)

diff --git a/src/Makefile b/src/Makefile
index db506dae..544534f8 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -5,10 +5,6 @@ DOCSDIR=$(SRCDIR)/../doc
 
 all: $(SUBDIRS)
 
-conly:
-	cd cluster; make conly
-	cd sphere; make conly
-
 docs:
 	cd $(DOCSDIR)/src; doxygen config.dox
 
diff --git a/src/cluster/Makefile b/src/cluster/Makefile
index d1f3927a..694bbc0d 100644
--- a/src/cluster/Makefile
+++ b/src/cluster/Makefile
@@ -12,8 +12,6 @@ all: clu edfb np_cluster
 clu: clu.o
 	$(FC) $(FCFLAGS) -o $(BUILDDIR)/clu $(BUILDDIR)/clu.o $(LFLAGS)
 
-conly: np_cluster
-
 edfb: edfb.o
 	$(FC) $(FCFLAGS) -o $(BUILDDIR)/edfb $(BUILDDIR)/edfb.o $(LFLAGS)
 
diff --git a/src/sphere/Makefile b/src/sphere/Makefile
index 3c1566bb..f70b833d 100644
--- a/src/sphere/Makefile
+++ b/src/sphere/Makefile
@@ -8,8 +8,6 @@ CXXLFLAGS=
 
 all: edfb sph np_sphere
 
-conly: np_sphere
-
 edfb: edfb.o
 	$(FC) $(FCFLAGS) -o $(BUILDDIR)/edfb $(BUILDDIR)/edfb.o $(LFLAGS)
 
diff --git a/src/trapping/Makefile b/src/trapping/Makefile
index 592126ef..bfad43bd 100644
--- a/src/trapping/Makefile
+++ b/src/trapping/Makefile
@@ -14,9 +14,6 @@ lffft: lffft.o
 clean:
 	rm -f $(BUILDDIR)/*.o
 
-conly:
-	echo "Trapping not yet implemented."
-
 wipe:
 	rm -f $(BUILDDIR)/frfme $(BUILDDIR)/lffft $(BUILDDIR)/*.o
 
-- 
GitLab