Skip to content

Commit

Permalink
Adds explicit dependancies to the makefile to force the mod files
Browse files Browse the repository at this point in the history
to be compiled first when using the -jx make option.
  • Loading branch information
jawatson committed May 13, 2020
1 parent a389d08 commit 23f692a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions voacapl/itshfbc/bin/anttyp99/Makefile.am
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ bin_PROGRAMS = anttyp99

AM_FFLAGS = -w -ffixed-line-length-none

# Main program depends on all modules
$(PRG_OBJ) : $(MOD_OBJS)

cant99.o : cant99.f95
ant99.o : ant99.f95 cant99.o
anttyp99.o : anttyp99.f95 cant99.o

anttyp99_SOURCES = cant99.f95\
anttyp99.f95\
ant99.f95
Expand Down
4 changes: 4 additions & 0 deletions voacapl/itshfbc/bin/dst/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ bin_PROGRAMS = dst2csv \

AM_FCFLAGS = -cpp -w -ffixed-line-length-none

f90getopt.o : f90getopt.f90
dst2csv.o : dst2csv.f90 f90getopt.o
dst2ascii.o : dst2ascii.f90 f90getopt.o

dst2csv_SOURCES = f90getopt.f90 \
dst2csv.f90

Expand Down

0 comments on commit 23f692a

Please sign in to comment.