From 1b099a17d5adc42b24b59d8868a86b91c9a00a2e Mon Sep 17 00:00:00 2001 From: Kevin Chu Date: Mon, 27 Jan 2020 12:00:47 -0500 Subject: [PATCH] Fix to makefile build order --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 16cac59..a3f926f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -38,6 +38,6 @@ atoms.o subroutines.o testfuncs.o box.o : functions.o main.o io.o $(MODES) $(OPTIONS) : elements.o call_mode.o : $(MODES) call_option.o : $(OPTIONS) -$(MODES) $(OPTIONS) io.o : atoms.o box.o +$(MODES) $(OPTIONS) subroutines.o io.o : atoms.o box.o $(MODES) main.o : io.o testfuncs.o elements.o mode_create.o $(OPTIONS): subroutines.o