1
0
mirror of https://github.com/taigrr/tplinkController synced 2025-01-18 04:43:13 -08:00

Initial commit

This commit is contained in:
Jason Benaim
2018-09-05 12:44:11 -07:00
commit ff94868a65
5 changed files with 194 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
target ?= hs100
objects := $(patsubst %.c,%.o,$(wildcard *.c))
CFLAGS=-Wall -Werror -std=c99 -ggdb -Os
.PHONY: all
all: $(target)
.PHONY: clean
clean:
rm -f $(target) $(objects)
$(target): $(objects)