Subversion Repositories Tewi

Rev

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

Rev 25 Rev 32
Line 1... Line 1...
1
# $Id: Makefile 25 2024-09-14 15:10:29Z nishi $
1
# $Id: Makefile 32 2024-09-16 12:42:19Z 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 20... Line 20...
20
 
20
 
21
./Common::
21
./Common::
22
	$(MAKE) -C $@ $(FLAGS)
22
	$(MAKE) -C $@ $(FLAGS)
23
 
23
 
24
format:
24
format:
25
	clang-format --verbose -i `find ./Server ./Common ./Module -name "*.c" -or -name "*.h"`
25
	clang-format --verbose -i `find ./Server ./Common ./Module "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"`
26
 
26
 
27
clean:
27
clean:
28
	$(MAKE) -C ./Server $(FLAGS) clean
28
	$(MAKE) -C ./Server $(FLAGS) clean
29
	$(MAKE) -C ./Module $(FLAGS) clean
29
	$(MAKE) -C ./Module $(FLAGS) clean
30
	$(MAKE) -C ./Common $(FLAGS) clean
30
	$(MAKE) -C ./Common $(FLAGS) clean