source: Main/trunk/Makefile@ 352

Last change on this file since 352 was 315, checked in by Nishi, on Oct 14, 2024 at 7:01:02 PM

wip

  • Property svn:keywords set to Id
File size: 2.5 KB
RevLine 
[2]1# $Id: Makefile 315 2024-10-14 10:01:02Z nishi $
2
3PWD = `pwd`
4PLATFORM = generic
[240]5PLATFORM_IDENT = NOT_WINDOWS
[4]6PREFIX = /usr/local
[182]7MODULE = ./Module
[244]8OBJ = o
[2]9
[25]10include Platform/$(PLATFORM).mk
11
[2]12FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX)
13
[156]14.PHONY: all format clean ./Server ./Common ./Module get-version
[2]15
[197]16all: ./Server $(MODULE)
[2]17
[146]18./Tool/option: ./Tool/option.c config.h
[128]19 cc -o $@ ./Tool/option.c
[2]20
[146]21./Tool/genconf: ./Tool/genconf.c config.h
[128]22 cc -o $@ ./Tool/genconf.c
[43]23
[146]24./Tool/itworks: ./Tool/itworks.c config.h
[130]25 cc -o $@ ./Tool/itworks.c
26
[197]27./Server:: ./Common ./Tool/option ./Tool/genconf ./Tool/itworks
[244]28 $(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)`"
[128]29
[17]30./Module:: ./Common
31 $(MAKE) -C $@ $(FLAGS)
32
[2]33./Common::
34 $(MAKE) -C $@ $(FLAGS)
35
[156]36./README: ./README.tmpl ./Server/tw_version.h
[251]37 sed "s/@VERSION@/`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`/g" ./README.tmpl > $@
[152]38
[128]39install: all ./Tool/genconf ./Tool/itworks
[306]40 -mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/tewi $(DESTDIR)$(PREFIX)/etc $(DESTDIR)$(PREFIX)/www
[170]41 if [ ! -e $(DESTDIR)$(PREFIX)/etc/tewi.conf ]; then ( ./Tool/genconf $(PREFIX) lib/tewi so > $(DESTDIR)$(PREFIX)/etc/tewi.conf || ( rm $(DESTDIR)$(PREFIX)/etc/tewi.conf ; exit 1 ) ) ; fi
[271]42 cp mime.types $(DESTDIR)$(PREFIX)/
[170]43 if [ ! -e $(DESTDIR)$(PREFIX)/www/index.html ]; then ( ./Tool/itworks > $(DESTDIR)$(PREFIX)/www/index.html || ( rm $(DESTDIR)$(PREFIX)/www/index.html ; exit 1 ) ) ; fi
44 if [ ! -e $(DESTDIR)$(PREFIX)/www/pbtewi.gif ]; then ( cp Binary/pbtewi.gif $(DESTDIR)$(PREFIX)/www/ || ( rm $(DESTDIR)$(PREFIX)/www/pbtewi.gif ; exit 1 ) ) ; fi
[184]45 -cp ./Server/tewi $(DESTDIR)$(PREFIX)/bin/
[312]46 -cp ./Server/tewi.exe $(DESTDIR)$(PREFIX)/bin/
[315]47 -cp ./Server/tewi.nlm $(DESTDIR)$(PREFIX)/bin/
[184]48 -cp ./Module/*.so $(DESTDIR)$(PREFIX)/lib/tewi/
[312]49 -cp ./Module/*.dll $(DESTDIR)$(PREFIX)/lib/tewi/
[315]50 -cp ./Module/*.nlm $(DESTDIR)$(PREFIX)/lib/tewi/
[121]51
[2]52format:
[129]53 clang-format --verbose -i `find ./Server ./Common ./Module ./Tool "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h
[2]54
[53]55get-version:
[251]56 @grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'
[53]57
[2]58clean:
59 $(MAKE) -C ./Server $(FLAGS) clean
[17]60 $(MAKE) -C ./Module $(FLAGS) clean
[2]61 $(MAKE) -C ./Common $(FLAGS) clean
[181]62 rm -f ./Tool/option ./Tool/genconf ./Tool/itworks
Note: See TracBrowser for help on using the repository browser.