Misc cleanup. License headers and removing old examples.
[vvhitespace] / examples / Makefile
CommitLineData
8bed3ccd 1# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
a41cabb1 2# See LICENSE.txt file for copyright and license details.
8bed3ccd
AT
3
4EXAMPLES != find . -mindepth 1 -maxdepth 1 -type d
5
6all:
7 @echo "No target available to build all."
8 @echo "Try 'make run' inside an example folder."
9
10clean:
11 @for dir in $(EXAMPLES); do \
12 echo Cleaning $$dir; \
13 (cd $$dir; ${MAKE} clean); \
14 done