source: Main/trunk/Makefile@ 182

Last change on this file since 182 was 182, checked in by Nishi, on Sep 27, 2024 at 9:55:12 PM

psp

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