Skip to content

Commit 1e3d1c6

Browse files
committed
fix(rules): Detect .mk extensions as makefiles so casile.mk gets automatic migrations applied
1 parent e13f243 commit 1e3d1c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/rules.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export PROJECT := $(PROJECT)
2323

2424
MARKDOWNSOURCES := $(patsubst ./%,%,$(call find,*.md))
2525
LUASOURCES := $(patsubst ./%,%,$(call find,*.lua))
26-
MAKESOURCES := $(patsubst ./%,%,$(call find,[Mm]akefile*))
26+
MAKESOURCES := $(patsubst ./%,%,$(call find,[Mm]akefile)) $(patsubst ./%,%,$(call find,*.mk))
2727
YAMLSOURCES := $(patsubst ./%,%,$(call find,*.yml))
2828

2929
# Find stuff that could be built based on what has matching YAML and a MD components

0 commit comments

Comments
 (0)