Skip to content

Commit

Permalink
Merge pull request clawpack#64 from mandli/rm-extra-include-directives
Browse files Browse the repository at this point in the history
Remove extraneous include directives
  • Loading branch information
mandli committed Oct 25, 2013
2 parents 44d535a + 95738d1 commit e426b84
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ MODULES ?=
# Make list of .o files required from the sources above:
OBJECTS = $(subst .F,.o, $(subst .F90,.o, $(subst .f,.o, $(subst .f90,.o, $(SOURCES)))))
MODULE_FILES = $(subst .F,.mod, $(subst .F90,.mod, $(subst .f,.mod, $(subst .f90,.mod, $(MODULES)))))
MODULE_PATHS = $(dir $(MODULE_FILES))
# FYI: Sort weeds out duplicate paths
MODULE_PATHS = $(sort $(dir $(MODULE_FILES)))
MODULE_OBJECTS = $(subst .F,.o, $(subst .F90,.o, $(subst .f,.o, $(subst .f90,.o, $(MODULES)))))

#----------------------------------------------------------------------------
Expand Down

0 comments on commit e426b84

Please # to comment.