Skip to content
Snippets Groups Projects
Commit 00387430 authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: Fixed bad name of target in Makefile

parent 5a7a76ac
No related branches found
No related tags found
No related merge requests found
......@@ -40,11 +40,13 @@ clean:
all: ${MOD_OBJS} ${RUNNABLE}
connection_m.o: connection_m.f08 neuron_dummy.o
neuron_dummy_m.o: neuron_dummy_m.f08
${FC} ${FORT_STD} -c neuron_dummy_m.f08
connection_m.o: connection_m.f08 neuron_dummy_m.o
${FC} ${FORT_STD} -c connection_m.f08 neuron_dummy_m.o
connection_test.out: connection_test.f08 connection_m.o neuron_dummy_m.o
${FC} ${FORT_STD} -o connection_test.out connection_test.f08 connection_m.o neuron_dummy_m.o
neuron_dummy.o: neuron_dummy_m.f08
${FC} ${FORT_STD} -c neuron_dummy_m.f08
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