Subversion Repositories Tewi

Rev

Rev 152 | Rev 157 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 152 Rev 156
Line 1... Line 1...
1
# $Id: Makefile 152 2024-09-25 10:23:21Z nishi $
1
# $Id: Makefile 156 2024-09-25 12:28:10Z nishi $
2
 
2
 
3
PWD = `pwd`
3
PWD = `pwd`
4
PLATFORM = generic
4
PLATFORM = generic
5
PREFIX = /usr/local
5
PREFIX = /usr/local
6
 
6
 
7
include Platform/$(PLATFORM).mk
7
include Platform/$(PLATFORM).mk
8
 
8
 
9
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX)
9
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX)
10
 
10
 
11
.PHONY: all format clean ./Server ./Common ./Module ./Manpage get-version
11
.PHONY: all format clean ./Server ./Common ./Module get-version
12
 
12
 
13
all: ./Server ./Module ./Manpage ./Tool/genconf ./Tool/itworks
13
all: ./Server ./Module ./Manpage ./Tool/genconf ./Tool/itworks
14
 
14
 
15
./Tool/option: ./Tool/option.c config.h
15
./Tool/option: ./Tool/option.c config.h
16
	cc -o $@ ./Tool/option.c
16
	cc -o $@ ./Tool/option.c
Line 28... Line 28...
28
	$(MAKE) -C $@ $(FLAGS)
28
	$(MAKE) -C $@ $(FLAGS)
29
 
29
 
30
./Common::
30
./Common::
31
	$(MAKE) -C $@ $(FLAGS)
31
	$(MAKE) -C $@ $(FLAGS)
32
 
32
 
33
./Manpage::
-
 
34
	$(MAKE) -C $@ $(FLAGS)
-
 
35
 
-
 
36
./README: ./README.tmpl
33
./README: ./README.tmpl ./Server/tw_version.h
37
	sed "s/@VERSION@/`grep "define TW_VERSION" Server/tw_version.h | grep -Eo '"[^\]+' | sed -E 's/^"//g'`/g" ./README.tmpl > $@
34
	sed "s/@VERSION@/`grep "define TW_VERSION" Server/tw_version.h | grep -Eo '"[^\]+' | sed -E 's/^"//g'`/g" ./README.tmpl > $@
38
 
35
 
39
install: all ./Tool/genconf ./Tool/itworks
36
install: all ./Tool/genconf ./Tool/itworks
40
	mkdir -p $(PREFIX)/bin $(PREFIX)/lib/tewi $(PREFIX)/share/man/man5 $(PREFIX)/etc $(PREFIX)/www
37
	mkdir -p $(PREFIX)/bin $(PREFIX)/lib/tewi $(PREFIX)/share/man/man5 $(PREFIX)/etc $(PREFIX)/www
41
	if [ ! -e $(PREFIX)/etc/tewi.conf ]; then ( ./Tool/genconf $(PREFIX) lib/tewi so > $(PREFIX)/etc/tewi.conf || ( rm $(PREFIX)/etc/tewi.conf ; exit 1 ) ) ; fi
38
	if [ ! -e $(PREFIX)/etc/tewi.conf ]; then ( ./Tool/genconf $(PREFIX) lib/tewi so > $(PREFIX)/etc/tewi.conf || ( rm $(PREFIX)/etc/tewi.conf ; exit 1 ) ) ; fi
42
	if [ ! -e $(PREFIX)/www/index.html ]; then ( ./Tool/itworks > $(PREFIX)/www/index.html || ( rm $(PREFIX)/www/index.html ; exit 1 ) ) ; fi
39
	if [ ! -e $(PREFIX)/www/index.html ]; then ( ./Tool/itworks > $(PREFIX)/www/index.html || ( rm $(PREFIX)/www/index.html ; exit 1 ) ) ; fi
43
	if [ ! -e $(PREFIX)/www/pbtewi.gif ]; then ( cp Binary/pbtewi.gif $(PREFIX)/www/ || ( rm $(PREFIX)/www/pbtewi.gif ; exit 1 ) ) ; fi
40
	if [ ! -e $(PREFIX)/www/pbtewi.gif ]; then ( cp Binary/pbtewi.gif $(PREFIX)/www/ || ( rm $(PREFIX)/www/pbtewi.gif ; exit 1 ) ) ; fi
44
	cp ./Server/tewi $(PREFIX)/bin/
41
	cp ./Server/tewi $(PREFIX)/bin/
45
	cp ./Module/*.so $(PREFIX)/lib/tewi/
42
	cp ./Module/*.so $(PREFIX)/lib/tewi/
46
	cp ./Manpage/tewi.8 $(PREFIX)/share/man/man8/
-
 
47
 
43
 
48
format:
44
format:
49
	clang-format --verbose -i `find ./Server ./Common ./Module ./Tool "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h
45
	clang-format --verbose -i `find ./Server ./Common ./Module ./Tool "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h
50
 
46
 
51
get-version:
47
get-version:
Line 53... Line 49...
53
 
49
 
54
clean:
50
clean:
55
	$(MAKE) -C ./Server $(FLAGS) clean
51
	$(MAKE) -C ./Server $(FLAGS) clean
56
	$(MAKE) -C ./Module $(FLAGS) clean
52
	$(MAKE) -C ./Module $(FLAGS) clean
57
	$(MAKE) -C ./Common $(FLAGS) clean
53
	$(MAKE) -C ./Common $(FLAGS) clean
58
	$(MAKE) -C ./Manpage $(FLAGS) clean
-
 
59
	rm -f ./Tool/option ./Tool/genconf
54
	rm -f ./Tool/option ./Tool/genconf