Subversion Repositories Keine

Rev

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

Rev 2 Rev 4
Line 1... Line 1...
1
# $Id: Makefile 2 2024-09-11 09:16:23Z nishi $
1
# $Id: Makefile 4 2024-09-11 10:22:22Z nishi $
2
 
2
 
3
PWD = `pwd`
3
PWD = `pwd`
4
PLATFORM = generic
4
PLATFORM = generic
5
 
5
 
6
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM)
6
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM)
7
 
7
 
8
.PHONY: all clean ./CGI
8
.PHONY: all format clean ./CGI
9
 
9
 
10
./CGI::
10
./CGI::
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 ./CGI $(FLAGS) clean
17
	$(MAKE) -C ./CGI $(FLAGS) clean