Skip to content

Commit 1be0de1

Browse files
committed
Updated the makefile to reflect new name
1 parent a7cc846 commit 1be0de1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,29 @@ LDFLAGS += -lm $(MUSE_LD_FLAGS)
1717

1818
OBJS = interface.o
1919

20-
CODELIB = src/libhermitepn.a
20+
CODELIB = src/libhermite_grx.a
2121

2222
CODE_GENERATOR = $(AMUSE_DIR)/build.py
2323

24-
all: hermitepn_worker
24+
all: hermite_grx_worker
2525

2626
clean:
2727
$(RM) -f *.so *.o *.pyc worker_code.cc worker_code.h
28-
$(RM) *~ hermitepn_worker worker_code.cc
28+
$(RM) *~ hermite_grx_worker worker_code.cc
2929
$(RM) -f *~
3030
make -C src clean
3131

3232
$(CODELIB):
3333
make -C src all
3434

3535
worker_code.cc: interface.py
36-
$(CODE_GENERATOR) --type=c interface.py HermitePNInterface -o $@
36+
$(CODE_GENERATOR) --type=c interface.py HermiteGRXInterface -o $@
3737

3838
worker_code.h: interface.py
39-
$(CODE_GENERATOR) --type=H -i amuse.support.codes.stopping_conditions.StoppingConditionInterface interface.py HermitePNInterface -o $@
39+
$(CODE_GENERATOR) --type=H -i amuse.support.codes.stopping_conditions.StoppingConditionInterface interface.py HermiteGRXInterface -o $@
4040

41-
hermitepn_worker: worker_code.cc worker_code.h $(CODELIB) $(OBJS)
42-
$(MPICXX) $(CXXFLAGS) $< -o $@ $(OBJS) $(CODELIB) -L./src -L$(AMUSE_DIR)/lib/stopcond -lstopcond -lhermitepn
41+
hermite_grx_worker: worker_code.cc worker_code.h $(CODELIB) $(OBJS)
42+
$(MPICXX) $(CXXFLAGS) $< -o $@ $(OBJS) $(CODELIB) -L./src -L$(AMUSE_DIR)/lib/stopcond -lstopcond -lhermite_grx
4343

4444
interface.o: interface.cc
4545
$(CXX) $(CXXFLAGS) -c -o $@ $<

0 commit comments

Comments
 (0)