From cae0560e048a87fd425724fec787179fe65eb07f Mon Sep 17 00:00:00 2001 From: Ben Blazak Date: Fri, 13 Apr 2012 19:05:06 -0700 Subject: [PATCH] removed makefile dependency on the unix shell (hopefully) --- src/makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/makefile b/src/makefile index 3f585bf..19960ea 100644 --- a/src/makefile +++ b/src/makefile @@ -10,9 +10,11 @@ TARGET = firmware -SRC = $(shell find -maxdepth 1 -name '*.c') \ - $(shell find ./keyboard -name '*.c') \ - $(shell find ./lib -name '*.c') \ +SRC = $(wildcard *.c) \ + $(wildcard keyboard/*.c) \ + $(wildcard keyboard/*/*.c) \ + $(wildcard lib/*.c) \ + $(wildcard lib/*/*.c) \ './lib-other/pjrc/usb_keyboard/usb_keyboard.c'