Skip to content

Commit

Permalink
Make the Makefile bash for Windows friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen authored and btab committed May 10, 2020
1 parent 5d50c11 commit b01f5ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ else
PONYC = $(COMPILE_WITH) --debug
endif

SOURCE_FILES := $(shell find $(SRC_DIR) -name \*.pony)
EXAMPLE_SOURCE_FILES := $(shell find $(EXAMPLES_DIR) -name \*.pony)
SOURCE_FILES := $(shell find $(SRC_DIR) -name *.pony)
EXAMPLE_SOURCE_FILES := $(shell find $(EXAMPLES_DIR) -name *.pony)

test: unit-tests build-examples

Expand Down

0 comments on commit b01f5ef

Please sign in to comment.