From ae62158fedf6387ded0775d530a5e3b2224ea6c4 Mon Sep 17 00:00:00 2001 From: mobileflowllc Date: Wed, 28 Jun 2017 07:35:58 -0700 Subject: [PATCH] makefile update --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 72e5a2b..cf931fb 100644 --- a/Makefile +++ b/Makefile @@ -19,12 +19,12 @@ CCCFLAGS = -Wall -ggdb -std=c++0x -I. -O3 -fpermissive #build the app -test: test.o src/homekit.o - $(CCC) test.o src/homekit.o -o test +test: test.o src/homekit.o src/WebClient.o + $(CCC) test.o src/*.o -o test particle: rm -f *.o - particle compile photon examples/usage/usage.ino src/homekit.* + particle compile photon examples/usage/usage.ino src/*.* clean:: rm -f *.o