source: Main/trunk/Makefile@ 387

Last change on this file since 387 was 387, checked in by Nishi, on Oct 19, 2024 at 8:31:19 AM

fix

  • Property svn:keywords set to Id
File size: 3.2 KB
RevLine 
[2]1# $Id: Makefile 387 2024-10-18 23:31:19Z 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
[386]14.PHONY: all prepare-config format clean ./Server ./Common ./Module get-version src-archive
[2]15
[197]16all: ./Server $(MODULE)
[2]17
[386]18prepare-config:
19 if [ '!' -e config.h ]; then cp config.h.tmpl config.h ; fi
20
[358]21src-archive: clean
22 @svn cleanup --remove-unversioned
23 cp -rf . /tmp/tewi-`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`
24 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'`
25 mv /tmp/tewi-`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`.tar.gz ./
26
[386]27./Tool/option: ./Tool/option.c config.h prepare-config
[128]28 cc -o $@ ./Tool/option.c
[2]29
[386]30./Tool/genconf: ./Tool/genconf.c config.h prepare-config
[128]31 cc -o $@ ./Tool/genconf.c
[43]32
[386]33./Tool/itworks: ./Tool/itworks.c config.h prepare-config
[130]34 cc -o $@ ./Tool/itworks.c
35
[386]36./Server:: ./Common ./Tool/option ./Tool/genconf ./Tool/itworks prepare-config
[244]37 $(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]38
[386]39./Module:: ./Common prepare-config
[17]40 $(MAKE) -C $@ $(FLAGS)
41
[386]42./Common:: prepare-config
[2]43 $(MAKE) -C $@ $(FLAGS)
44
[156]45./README: ./README.tmpl ./Server/tw_version.h
[387]46 sed "s/@VERSION@/`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`/g" ./README.tmpl > $@
[152]47
[128]48install: all ./Tool/genconf ./Tool/itworks
[387]49 -mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/tewi $(DESTDIR)$(PREFIX)/etc $(DESTDIR)$(PREFIX)/www
[386]50 if [ '!' -e $(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
[271]51 cp mime.types $(DESTDIR)$(PREFIX)/
[386]52 if [ '!' -e $(DESTDIR)$(PREFIX)/www/index.html ]; then ( ./Tool/itworks > $(DESTDIR)$(PREFIX)/www/index.html || ( rm $(DESTDIR)$(PREFIX)/www/index.html ; exit 1 ) ) ; fi
53 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]54 -cp ./Server/tewi $(DESTDIR)$(PREFIX)/bin/
[312]55 -cp ./Server/tewi.exe $(DESTDIR)$(PREFIX)/bin/
[315]56 -cp ./Server/tewi.nlm $(DESTDIR)$(PREFIX)/bin/
[184]57 -cp ./Module/*.so $(DESTDIR)$(PREFIX)/lib/tewi/
[312]58 -cp ./Module/*.dll $(DESTDIR)$(PREFIX)/lib/tewi/
[315]59 -cp ./Module/*.nlm $(DESTDIR)$(PREFIX)/lib/tewi/
[121]60
[2]61format:
[129]62 clang-format --verbose -i `find ./Server ./Common ./Module ./Tool "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h
[2]63
[53]64get-version:
[251]65 @grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'
[53]66
[2]67clean:
68 $(MAKE) -C ./Server $(FLAGS) clean
[17]69 $(MAKE) -C ./Module $(FLAGS) clean
[2]70 $(MAKE) -C ./Common $(FLAGS) clean
[181]71 rm -f ./Tool/option ./Tool/genconf ./Tool/itworks
Note: See TracBrowser for help on using the repository browser.