Rev 2 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# $Id: Makefile 4 2024-09-11 10:22:22Z nishi $
PWD = `pwd`
PLATFORM = generic
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM)
.PHONY: all format clean ./CGI
./CGI::
$(MAKE) -C $@ $(FLAGS)
format:
clang-format -i --verbose `find . -name "*.c" -or -name "*.h"`
clean:
$(MAKE) -C ./CGI $(FLAGS) clean