Skip to content

Commit

Permalink
Turn CASE-Examples discovery into wildcard discovery from submodule
Browse files Browse the repository at this point in the history
No effects were observed on Make-managed files.

Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
  • Loading branch information
ajnelson-nist committed Jul 21, 2023
1 parent 6d33524 commit 7bfbc39
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/CASE-Examples/examples/illustrations/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@

SHELL := /bin/bash

illdirs := $(shell find * -maxdepth 0 -type d | sort | egrep -v '^src$$')
top_srcdir := $(shell cd ../../../.. ; pwd)

illustrations_dir := $(top_srcdir)/dependencies/CASE-Examples/examples/illustrations

illdirs := $(shell cd $(illustrations_dir) ; find * -maxdepth 0 -type d | sort | egrep -v '^src$$')

all_targets := $(foreach illdir,$(illdirs),all-$(illdir))
check_targets := $(foreach illdir,$(illdirs),check-$(illdir))
Expand Down

0 comments on commit 7bfbc39

Please sign in to comment.