Subversion Repositories Keine

Rev

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

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