Skip to content

Commit

Permalink
Merge pull request #29383 from dschwen/neml2_make_symlinks_27438
Browse files Browse the repository at this point in the history
Make sure symlinks are set up
  • Loading branch information
dschwen authored Dec 10, 2024
2 parents c900eec + 03d3404 commit f46a73c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/solid_mechanics/contrib/neml2.mk
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ NEML2_SRC := $(shell find $(NEML2_SRC_DIRS) -name "*.cxx")
NEML2_OBJ := $(patsubst %.cxx,%.$(obj-suffix),$(NEML2_SRC))
NEML2_LIB := $(NEML2_DIR)/libNEML2-$(METHOD).la

ifeq ($(MOOSE_HEADER_SYMLINKS),true)
$(NEML2_OBJ): $(moose_config_symlink) | moose_header_symlinks
else
$(NEML2_OBJ): $(moose_config)
endif

$(NEML2_LIB): $(NEML2_OBJ)
@echo "Linking Library "$@"..."
@$(libmesh_LIBTOOL) --tag=CC $(LIBTOOLFLAGS) --mode=link --quiet \
Expand Down

0 comments on commit f46a73c

Please sign in to comment.