Skip to content
Snippets Groups Projects
Commit 2aeadeb3 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Create rule to compile only C++ code

parent bed0e1ee
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,10 @@ DOCSDIR=$(SRCDIR)/../doc
all: $(SUBDIRS)
conly:
cd cluster; make conly
cd sphere; make conly
docs:
cd $(DOCSDIR)/src; doxygen config.dox
......
......@@ -12,6 +12,8 @@ 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)
......
......@@ -8,6 +8,8 @@ CXXLFLAGS=
all: edfb sph np_sphere
conly: np_sphere
edfb: edfb.o
$(FC) $(FCFLAGS) -o $(BUILDDIR)/edfb $(BUILDDIR)/edfb.o $(LFLAGS)
......
......@@ -14,6 +14,9 @@ lffft: lffft.o
clean:
rm -f $(BUILDDIR)/*.o
conly:
echo "Trapping not yet implemented."
wipe:
rm -f $(BUILDDIR)/frfme $(BUILDDIR)/lffft $(BUILDDIR)/*.o
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment