Skip to content

Commit

Permalink
Replace glob patterns in Makefile with find command (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
waj committed Mar 10, 2020
1 parent 0cda157 commit 37ba55e
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 37ba55e

Please sign in to comment.