Subversion Repositories Tewi

Rev

Rev 182 | Rev 197 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
# $Id: Makefile 184 2024-09-27 19:19:56Z nishi $
2
 
3
PWD = `pwd`
4
PLATFORM = generic
4 nishi 5
PREFIX = /usr/local
182 nishi 6
MODULE = ./Module
2 nishi 7
 
25 nishi 8
include Platform/$(PLATFORM).mk
9
 
2 nishi 10
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX)
11
 
156 nishi 12
.PHONY: all format clean ./Server ./Common ./Module get-version
2 nishi 13
 
182 nishi 14
all: ./Server $(MODULE) ./Tool/genconf ./Tool/itworks
2 nishi 15
 
146 nishi 16
./Tool/option: ./Tool/option.c config.h
128 nishi 17
	cc -o $@ ./Tool/option.c
2 nishi 18
 
146 nishi 19
./Tool/genconf: ./Tool/genconf.c config.h
128 nishi 20
	cc -o $@ ./Tool/genconf.c
43 nishi 21
 
146 nishi 22
./Tool/itworks: ./Tool/itworks.c config.h
130 nishi 23
	cc -o $@ ./Tool/itworks.c
24
 
128 nishi 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 nishi 28
./Module:: ./Common
29
	$(MAKE) -C $@ $(FLAGS)
30
 
2 nishi 31
./Common::
32
	$(MAKE) -C $@ $(FLAGS)
33
 
156 nishi 34
./README: ./README.tmpl ./Server/tw_version.h
152 nishi 35
	sed "s/@VERSION@/`grep "define TW_VERSION" Server/tw_version.h | grep -Eo '"[^\]+' | sed -E 's/^"//g'`/g" ./README.tmpl > $@
36
 
128 nishi 37
install: all ./Tool/genconf ./Tool/itworks
171 nishi 38
	mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/tewi $(DESTDIR)$(PREFIX)/etc $(DESTDIR)$(PREFIX)/www
170 nishi 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
184 nishi 42
	-cp ./Server/tewi $(DESTDIR)$(PREFIX)/bin/
43
	-cp ./Module/*.so $(DESTDIR)$(PREFIX)/lib/tewi/
121 nishi 44
 
2 nishi 45
format:
129 nishi 46
	clang-format --verbose -i `find ./Server ./Common ./Module ./Tool "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h
2 nishi 47
 
53 nishi 48
get-version:
49
	@grep "define TW_VERSION" Server/tw_version.h | grep -Eo '"[^\]+' | sed -E 's/^"//g'
50
 
2 nishi 51
clean:
52
	$(MAKE) -C ./Server $(FLAGS) clean
17 nishi 53
	$(MAKE) -C ./Module $(FLAGS) clean
2 nishi 54
	$(MAKE) -C ./Common $(FLAGS) clean
181 nishi 55
	rm -f ./Tool/option ./Tool/genconf ./Tool/itworks