Subversion Repositories Okuu

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
# $Id: Makefile 11 2024-09-11 10:24:20Z nishi $
2
 
3
PLATFORM = generic
4
PWD = `pwd`
5
 
6
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM)
7
 
11 nishi 8
.PHONY: all format clean ./Bot
2 nishi 9
 
10
./Bot::
11
	$(MAKE) -C $@ $(FLAGS)
12
 
11 nishi 13
format:
14
	clang-format -i --verbose `find . -name "*.c" -or -name "*.h"`
15
 
2 nishi 16
clean:
17
	$(MAKE) -C ./Bot $(FLAGS) clean