Skip to content

Commit

Permalink
missing compilation of gen77 from makefile corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
nimgould committed Apr 11, 2024
1 parent 57adf66 commit 0c23243
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/gen77/makemaster
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ include $(CUTEST)/src/makedefs/defaults
# ==================== package-dependent parts ============================
# ===========================================================================

# package name
# package name

PACKAGE = GEN77
package = gen77
Expand All @@ -24,6 +24,9 @@ package = gen77

include $(CUTEST)/src/makedefs/definitions

$(PACKAGE) = $(OBJ)/$(package).o $(OBJ)/$(package)_main.o
gen90 = $(OBJ)/$(package).o $(OBJ)/$(package)_main.o

# include compilation and run instructions

include $(CUTEST)/src/makedefs/instructions
Expand Down Expand Up @@ -51,4 +54,3 @@ run_test: tools test_cutest $(OBJ)/$(package)_main.o $(OBJ)/$(package).o
# include standard package compilation instructions

include $(CUTEST)/src/makedefs/compile

4 changes: 2 additions & 2 deletions src/gen90/makemaster
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ include $(CUTEST)/src/makedefs/defaults
# ==================== package-dependent parts ============================
# ===========================================================================

# package name
# package name

PACKAGE = GEN90
package = gen90
Expand All @@ -25,7 +25,7 @@ package = gen90
include $(CUTEST)/src/makedefs/definitions

$(PACKAGE) = $(OBJ)/$(package).o $(OBJ)/$(package)_main.o
gen90 = $(OBJ)/gen90.o $(OBJ)/gen90_main.o
gen90 = $(OBJ)/$(package).o $(OBJ)/$(package)_main.o

# include compilation and run instructions

Expand Down

0 comments on commit 0c23243

Please sign in to comment.