Merge pull request #303 from OrderN/tk-makefile-linkflags

Fix order of flags in Makefile
This commit is contained in:
Tuomas Koskela 2024-01-16 14:49:11 +00:00 committed by GitHub
commit 7956f56a67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ deps.obj.inc: $(SRCS_NODS) $(SYSTEM_PATH)
#Target
$(TARGET) : $(NODE_OBJECTS)
$(FC) $(LINKFLAGS) -o $(TARGET) $(NODE_OBJECTS) $(LIBS)
$(FC) -o $(TARGET) $(NODE_OBJECTS) $(LINKFLAGS) $(LIBS)
cp $(TARGET) ../bin
#.f90.o: