Subversion Repositories IRC-Archiver

Rev

Rev 2 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

# $Id: Makefile 3 2024-08-29 18:49:46Z nishi $

PWD = `pwd`
PLATFORM = generic

FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM)

.PHONY: all format clean ./Bot

all: ./Bot

./Bot::
        $(MAKE) -C $@ $(FLAGS)

format:
        clang-format --verbose -i `find . -name "*.c" -or -name "*.h"`

clean:
        $(MAKE) -C $@ $(FLAGS) clean