Skip to content

Commit

Permalink
Replace glob patterns in Makefile with find command (crystal-lang#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
waj authored and taylor committed Aug 11, 2020
1 parent 889d770 commit aa44c25
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

CRYSTAL = crystal
CRFLAGS =
SOURCES = src/*.cr src/**/*.cr lib/molinillo/**/*.cr
SHARDS_SOURCES = $(shell find src -name '*.cr')
MOLINILLO_SOURCES = $(shell find lib/molinillo -name '*.cr')
SOURCES = $(SHARDS_SOURCES) $(MOLINILLO_SOURCES)
TEMPLATES = src/templates/*.ecr

DESTDIR =
Expand Down

0 comments on commit aa44c25

Please sign in to comment.