Subversion Repositories Okuu

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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