Subversion Repositories Tewi

Rev

Rev 4 | Rev 17 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4 Rev 6
Line 1... Line 1...
1
# $Id: Makefile 4 2024-09-13 09:39:33Z nishi $
1
# $Id: Makefile 6 2024-09-13 10:28:20Z nishi $
2
 
2
 
3
PWD = `pwd`
3
PWD = `pwd`
4
PLATFORM = generic
4
PLATFORM = generic
5
PREFIX = /usr/local
5
PREFIX = /usr/local
6
 
6
 
Line 15... Line 15...
15
 
15
 
16
./Common::
16
./Common::
17
	$(MAKE) -C $@ $(FLAGS)
17
	$(MAKE) -C $@ $(FLAGS)
18
 
18
 
19
format:
19
format:
20
	clang-format --verbose -i `find . -name "*.c" -or -name "*.h"`
20
	clang-format --verbose -i `find ./Server ./Common -name "*.c" -or -name "*.h"`
21
 
21
 
22
clean:
22
clean:
23
	$(MAKE) -C ./Server $(FLAGS) clean
23
	$(MAKE) -C ./Server $(FLAGS) clean
24
	$(MAKE) -C ./Common $(FLAGS) clean
24
	$(MAKE) -C ./Common $(FLAGS) clean