mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-27 22:52:19 +03:00
16 lines
510 B
Makefile
16 lines
510 B
Makefile
|
|
all: README examples/UpTime_tick/README examples/UpTime_synopsis/README
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -f README README.bak \
|
||
|
|
examples/UpTime_tick/README examples/UpTime_tick/README.bak \
|
||
|
|
examples/UpTime_synopsis/README examples/UpTime_synopsis/README.bak
|
||
|
|
|
||
|
|
README: UpTime.h
|
||
|
|
pod2readme $< $@ && rm -f $@.bak
|
||
|
|
|
||
|
|
examples/UpTime_tick/README: examples/UpTime_tick/UpTime_tick.ino
|
||
|
|
pod2readme $< $@ && rm -f $@.bak
|
||
|
|
|
||
|
|
examples/UpTime_synopsis/README: examples/UpTime_synopsis/UpTime_synopsis.ino
|
||
|
|
pod2readme $< $@ && rm -f $@.bak
|