Subversion Repositories Tewi

Rev

Rev 397 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

# $Id: Makefile 405 2024-11-03 13:49:26Z nishi $

PWD = `pwd`
PLATFORM = generic
PLATFORM_IDENT = NOT_WINDOWS
PREFIX = /usr/local
MODULE = ./Module
OBJ = o

include Platform/$(PLATFORM).mk

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

.PHONY: all prepare-config format clean ./Server ./Common ./Module get-version src-archive

all: ./Server $(MODULE)

prepare-config:
        if [ '!' -f config.h ]; then cp config.h.tmpl config.h ; fi

src-archive: clean
        @svn cleanup --remove-unversioned
        cp -rf . /tmp/tewi-`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`
        cd /tmp && tar --exclude .github -czvf tewi-`grep "define TW_VERSION" tewi-*/Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`.tar.gz tewi-`grep "define TW_VERSION" tewi-*/Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`
        mv /tmp/tewi-`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`.tar.gz ./
        rm -rf /tmp/tewi-*

./Tool/option: ./Tool/option.c config.h prepare-config
        cc -o $@ ./Tool/option.c

./Tool/genconf: ./Tool/genconf.c config.h prepare-config
        cc -o $@ ./Tool/genconf.c

./Tool/itworks: ./Tool/itworks.c config.h prepare-config
        cc -o $@ ./Tool/itworks.c

./Server:: ./Common ./Tool/option ./Tool/genconf ./Tool/itworks prepare-config
        $(MAKE) -C $@ $(FLAGS) EXTOBJS="`./Tool/option objs ../ $(PLATFORM_IDENT) $(OBJ)`" EXTLIBS="`./Tool/option libs ../ $(PLATFORM_IDENT) $(OBJ)`" EXTCFLAGS="`./Tool/option cflags ../ $(PLATFORM_IDENT) $(OBJ)`" EXTLDFLAGS="`./Tool/option ldflags ../ $(PLATFORM_IDENT) $(OBJ)`"

./Module:: ./Common prepare-config
        $(MAKE) -C $@ $(FLAGS)

./Common:: prepare-config
        $(MAKE) -C $@ $(FLAGS)

./README: ./README.tmpl ./Server/tw_version.h
        sed "s/@VERSION@/`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`/g" ./README.tmpl > $@

install: all ./Tool/genconf ./Tool/itworks
        -mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/tewi $(DESTDIR)$(PREFIX)/etc $(DESTDIR)$(PREFIX)/www
        if [ '!' -f $(DESTDIR)$(PREFIX)/etc/tewi.conf ]; then ( ./Tool/genconf $(PREFIX) lib/tewi `echo $(LIBSUF) | sed 's/\.//g'` > $(DESTDIR)$(PREFIX)/etc/tewi.conf || ( rm $(DESTDIR)$(PREFIX)/etc/tewi.conf ; exit 1 ) ) ; fi
        cp mime.types $(DESTDIR)$(PREFIX)/
        if [ '!' -f $(DESTDIR)$(PREFIX)/www/index.html ]; then ( ./Tool/itworks > $(DESTDIR)$(PREFIX)/www/index.html || ( rm $(DESTDIR)$(PREFIX)/www/index.html ; exit 1 ) ) ; fi
        if [ '!' -f $(DESTDIR)$(PREFIX)/www/pbtewi.gif ]; then ( cp Binary/pbtewi.gif $(DESTDIR)$(PREFIX)/www/ || ( rm $(DESTDIR)$(PREFIX)/www/pbtewi.gif ; exit 1 ) ) ; fi
        -cp ./Server/tewi $(DESTDIR)$(PREFIX)/bin/
        -cp ./Server/tewi.exe $(DESTDIR)$(PREFIX)/bin/
        -cp ./Server/tewi.nlm $(DESTDIR)$(PREFIX)/bin/
        -cp ./Module/*.so $(DESTDIR)$(PREFIX)/lib/tewi/
        -cp ./Module/*.dll $(DESTDIR)$(PREFIX)/lib/tewi/
        -cp ./Module/*.nlm $(DESTDIR)$(PREFIX)/lib/tewi/

format:
        clang-format --verbose -i `find ./Server ./Common ./Module ./Tool "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h

get-version:
        @grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'

clean:
        $(MAKE) -C ./Server $(FLAGS) clean
        $(MAKE) -C ./Module $(FLAGS) clean
        $(MAKE) -C ./Common $(FLAGS) clean
        rm -f ./Tool/option ./Tool/genconf ./Tool/itworks