Skip to content

Commit

Permalink
fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
simopier committed Aug 12, 2024
1 parent d7934c5 commit e584f68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ endif

# Use the TMAP8 submodule if it exists and TMAP8_DIR is not set
# If it doesn't exist, and TMAP8_DIR is not set, then look for it adjacent to the application
TMAP8_SUBMODULE := $(CURDIR)/TMAP8
TMAP8_SUBMODULE := $(CURDIR)/tmap8
ifneq ($(wildcard $(TMAP8_SUBMODULE)/Makefile),)
TMAP8_DIR ?= $(TMAP8_SUBMODULE)
else
TMAP8_DIR ?= $(shell dirname `pwd`)/TMAP8
TMAP8_DIR ?= $(shell dirname `pwd`)/tmap8
endif

# framework
Expand Down Expand Up @@ -68,7 +68,7 @@ include $(MOOSE_DIR)/modules/modules.mk

# TMAP8
APPLICATION_DIR := $(TMAP8_DIR)
APPLICATION_NAME := TMAP8
APPLICATION_NAME := tmap8
BUILD_EXEC := no
GEN_REVISION := no
include $(FRAMEWORK_DIR)/app.mk
Expand Down

0 comments on commit e584f68

Please sign in to comment.