From b01f5efe0ce75829d9c3200851c5c9542fcf1644 Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Sun, 10 May 2020 12:03:40 -0400 Subject: [PATCH] Make the Makefile bash for Windows friendly --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2259ccb..5894e16 100644 --- a/Makefile +++ b/Makefile @@ -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