mirror of
https://github.com/taigrr/tplinkController
synced 2025-01-18 04:43:13 -08:00
13 lines
205 B
Makefile
13 lines
205 B
Makefile
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)
|