First time poster here. Excited to get started w/ my research!

I'm trying to build and compile a chemical mechanism solver.

In the code, of main.mk I have the following line

%.o: %.f90
$(F90) $(F90FLAGS) $(LINCLUDES) -c $<

For some reason that is giving me an error because of the c. The error is this and is repeated about ten times for ten different files.

c messy_main_constants_mem.f90
make: c: Command not found
make: [messy_main_constants_mem.o] Error 127 (ignored)

Thanks a bunch for all of your help!

--Luke