source: Main/trunk/Makefile@ 211

Last change on this file since 211 was 197, checked in by Nishi, on Sep 29, 2024 at 4:13:35 PM

just generate pkg containing the config

  • Property svn:keywords set to Id
File size: 2.1 KB
Line 
1# $Id: Makefile 197 2024-09-29 07:13:35Z nishi $
2
3PWD = `pwd`
4PLATFORM = generic
5PREFIX = /usr/local
6MODULE = ./Module
7
8include Platform/$(PLATFORM).mk
9
10FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX)
11
12.PHONY: all format clean ./Server ./Common ./Module get-version
13
14all: ./Server $(MODULE)
15
16./Tool/option: ./Tool/option.c config.h
17 cc -o $@ ./Tool/option.c
18
19./Tool/genconf: ./Tool/genconf.c config.h
20 cc -o $@ ./Tool/genconf.c
21
22./Tool/itworks: ./Tool/itworks.c config.h
23 cc -o $@ ./Tool/itworks.c
24
25./Server:: ./Common ./Tool/option ./Tool/genconf ./Tool/itworks
26 $(MAKE) -C $@ $(FLAGS) EXTOBJS="`./Tool/option objs ../`" EXTLIBS="`./Tool/option libs ../`" EXTCFLAGS="`./Tool/option cflags ../`" EXTLDFLAGS="`./Tool/option ldflags ../`"
27
28./Module:: ./Common
29 $(MAKE) -C $@ $(FLAGS)
30
31./Common::
32 $(MAKE) -C $@ $(FLAGS)
33
34./README: ./README.tmpl ./Server/tw_version.h
35 sed "s/@VERSION@/`grep "define TW_VERSION" Server/tw_version.h | grep -Eo '"[^\]+' | sed -E 's/^"//g'`/g" ./README.tmpl > $@
36
37install: all ./Tool/genconf ./Tool/itworks
38 mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/tewi $(DESTDIR)$(PREFIX)/etc $(DESTDIR)$(PREFIX)/www
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/
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 rm -f ./Tool/option ./Tool/genconf ./Tool/itworks
Note: See TracBrowser for help on using the repository browser.