removed makefile dependency on the unix shell (hopefully)

f13
Ben Blazak 2012-04-13 19:05:06 -07:00
parent 53e620a173
commit cae0560e04
1 changed files with 5 additions and 3 deletions

View File

@ -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'