Rev 2 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# $Id: Makefile 11 2024-09-11 10:24:20Z nishi $
PLATFORM = generic
PWD = `pwd`
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM)
.PHONY: all format clean ./Bot
./Bot::
$(MAKE) -C $@ $(FLAGS)
format:
clang-format -i --verbose `find . -name "*.c" -or -name "*.h"`
clean:
$(MAKE) -C ./Bot $(FLAGS) clean