# $Id: Makefile 121 2024-09-21 10:39:17Z nishi $ PWD = `pwd` PLATFORM = generic PREFIX = /usr/local include Platform/$(PLATFORM).mk FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX) .PHONY: all format clean ./Server ./Common ./Module ./Manpage get-version all: ./Server ./Module ./Manpage ./Server/option: ./Server/option.c cc -o $@ ./Server/option.c ./Server:: ./Common ./Server/option $(MAKE) -C $@ $(FLAGS) EXTOBJS="`./Server/option objs ../`" EXTLIBS="`./Server/option libs ../`" EXTCFLAGS="`./Server/option cflags ../`" EXTLDFLAGS="`./Server/option ldflags ../`" ./Module:: ./Common $(MAKE) -C $@ $(FLAGS) ./Common:: $(MAKE) -C $@ $(FLAGS) ./Manpage:: $(MAKE) -C $@ $(FLAGS) install: all mkdir -p $(PREFIX)/bin $(PREFIX)/lib/tewi $(PREFIX)/share/man/man5 $(PREFIX)/etc if [ ! -e $(PREFIX)/etc/tewi.conf ]; then cp example.conf $(PREFIX)/etc/tewi.conf ; fi cp ./Server/tewi $(PREFIX)/bin/ cp ./Module/*.so $(PREFIX)/lib/tewi/ cp ./Manpage/tewi.conf.5 $(PREFIX)/share/man/man5/ format: clang-format --verbose -i `find ./Server ./Common ./Module "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h get-version: @grep "define TW_VERSION" Server/tw_version.h | grep -Eo '"[^\]+' | sed -E 's/^"//g' clean: $(MAKE) -C ./Server $(FLAGS) clean $(MAKE) -C ./Module $(FLAGS) clean $(MAKE) -C ./Common $(FLAGS) clean $(MAKE) -C ./Manpage $(FLAGS) clean rm -f ./Server/option