Skip to content

Commit

Permalink
makefile update
Browse files Browse the repository at this point in the history
  • Loading branch information
moflo committed Jun 28, 2017
1 parent 88758d8 commit ae62158
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ae62158

Please sign in to comment.