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

Move CLUSTER subroutine implementation to clu_subs.cpp

parent 2f144ba9
No related branches found
No related tags found
No related merge requests found
...@@ -15,8 +15,8 @@ clu: clu.o ...@@ -15,8 +15,8 @@ clu: clu.o
edfb: edfb.o edfb: edfb.o
$(FC) $(FCFLAGS) -o $(BUILDDIR)/edfb $(BUILDDIR)/edfb.o $(LFLAGS) $(FC) $(FCFLAGS) -o $(BUILDDIR)/edfb $(BUILDDIR)/edfb.o $(LFLAGS)
np_cluster: $(BUILDDIR)/np_cluster.o $(BUILDDIR)/Commons.o $(BUILDDIR)/Configuration.o $(BUILDDIR)/Parsers.o $(BUILDDIR)/sph_subs.o $(BUILDDIR)/cluster.o np_cluster: $(BUILDDIR)/np_cluster.o $(BUILDDIR)/Commons.o $(BUILDDIR)/Configuration.o $(BUILDDIR)/Parsers.o $(BUILDDIR)/sph_subs.o $(BUILDDIR)/clu_subs.o $(BUILDDIR)/cluster.o
$(CXX) $(CXXFLAGS) $(CXXLFLAGS) -o $(BUILDDIR)/np_cluster $(BUILDDIR)/np_cluster.o $(BUILDDIR)/Commons.o $(BUILDDIR)/Configuration.o $(BUILDDIR)/Parsers.o $(BUILDDIR)/sphere.o $(BUILDDIR)/cluster.o $(CXX) $(CXXFLAGS) $(CXXLFLAGS) -o $(BUILDDIR)/np_cluster $(BUILDDIR)/np_cluster.o $(BUILDDIR)/Commons.o $(BUILDDIR)/Configuration.o $(BUILDDIR)/Parsers.o $(BUILDDIR)/sph_subs.o $(BUILDDIR)/clu_subs.o $(BUILDDIR)/cluster.o
$(BUILDDIR)/np_cluster.o: $(BUILDDIR)/np_cluster.o:
$(CXX) $(CXXFLAGS) -c np_cluster.cpp -o $(BUILDDIR)/np_cluster.o $(CXX) $(CXXFLAGS) -c np_cluster.cpp -o $(BUILDDIR)/np_cluster.o
...@@ -33,8 +33,11 @@ $(BUILDDIR)/Parsers.o: ...@@ -33,8 +33,11 @@ $(BUILDDIR)/Parsers.o:
$(BUILDDIR)/cluster.o: $(BUILDDIR)/cluster.o:
$(CXX) $(CXXFLAGS) -c cluster.cpp -o $(BUILDDIR)/cluster.o $(CXX) $(CXXFLAGS) -c cluster.cpp -o $(BUILDDIR)/cluster.o
$(BUILDDIR)/clu_subs.o:
$(CXX) $(CXXFLAGS) -c ../libnptm/clu_subs.cpp -o $(BUILDDIR)/clu_subs.o
$(BUILDDIR)/sph_subs.o: $(BUILDDIR)/sph_subs.o:
$(CXX) $(CXXFLAGS) -c ../libnptm/sph_subs.cpp -o $(BUILDDIR)/sphere.o $(CXX) $(CXXFLAGS) -c ../libnptm/sph_subs.cpp -o $(BUILDDIR)/sph_subs.o
clean: clean:
rm -f $(BUILDDIR)/*.o rm -f $(BUILDDIR)/*.o
......
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* *
* \brief C++ porting of SPH functions and subroutines. * \brief C++ porting of SPH functions and subroutines.
* *
* This library includes a collection of function that are used to solve the * This library includes a collection of functions that are used to solve the
* scattering problem in the case of a single sphere. Some of these functions * scattering problem in the case of a single sphere. Some of these functions
* are also generalized to the case of clusters of spheres. In most cases, the * are also generalized to the case of clusters of spheres. In most cases, the
* results of calculations do not fall back to fundamental data types. They are * results of calculations do not fall back to fundamental data types. They are
......
This diff is collapsed.
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