source: Main/trunk/Makefile@ 133

Last change on this file since 133 was 131, checked in by Nishi, on Sep 23, 2024 at 7:30:00 PM

fix genconf

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