11 |
|
|
12 |
|
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX) |
13 |
|
|
14 |
< |
.PHONY: all format clean ./Server ./Common ./Module get-version src-archive |
14 |
> |
.PHONY: all prepare-config format clean ./Server ./Common ./Module get-version src-archive |
15 |
|
|
16 |
|
all: ./Server $(MODULE) |
17 |
|
|
18 |
+ |
prepare-config: |
19 |
+ |
if [ '!' -e config.h ]; then cp config.h.tmpl config.h ; fi |
20 |
+ |
|
21 |
|
src-archive: clean |
22 |
|
@svn cleanup --remove-unversioned |
23 |
|
cp -rf . /tmp/tewi-`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'` |
24 |
|
cd /tmp && tar --exclude .github -czvf tewi-`grep "define TW_VERSION" tewi-*/Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`.tar.gz tewi-`grep "define TW_VERSION" tewi-*/Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'` |
25 |
|
mv /tmp/tewi-`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`.tar.gz ./ |
26 |
|
|
27 |
< |
./Tool/option: ./Tool/option.c config.h |
27 |
> |
./Tool/option: ./Tool/option.c config.h prepare-config |
28 |
|
cc -o $@ ./Tool/option.c |
29 |
|
|
30 |
< |
./Tool/genconf: ./Tool/genconf.c config.h |
30 |
> |
./Tool/genconf: ./Tool/genconf.c config.h prepare-config |
31 |
|
cc -o $@ ./Tool/genconf.c |
32 |
|
|
33 |
< |
./Tool/itworks: ./Tool/itworks.c config.h |
33 |
> |
./Tool/itworks: ./Tool/itworks.c config.h prepare-config |
34 |
|
cc -o $@ ./Tool/itworks.c |
35 |
|
|
36 |
< |
./Server:: ./Common ./Tool/option ./Tool/genconf ./Tool/itworks |
36 |
> |
./Server:: ./Common ./Tool/option ./Tool/genconf ./Tool/itworks prepare-config |
37 |
|
$(MAKE) -C $@ $(FLAGS) EXTOBJS="`./Tool/option objs ../ $(PLATFORM_IDENT) $(OBJ)`" EXTLIBS="`./Tool/option libs ../ $(PLATFORM_IDENT) $(OBJ)`" EXTCFLAGS="`./Tool/option cflags ../ $(PLATFORM_IDENT) $(OBJ)`" EXTLDFLAGS="`./Tool/option ldflags ../ $(PLATFORM_IDENT) $(OBJ)`" |
38 |
|
|
39 |
< |
./Module:: ./Common |
39 |
> |
./Module:: ./Common prepare-config |
40 |
|
$(MAKE) -C $@ $(FLAGS) |
41 |
|
|
42 |
< |
./Common:: |
42 |
> |
./Common:: prepare-config |
43 |
|
$(MAKE) -C $@ $(FLAGS) |
44 |
|
|
45 |
|
./README: ./README.tmpl ./Server/tw_version.h |
46 |
< |
sed "s/@VERSION@/`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`/g" ./README.tmpl > $@ |
46 |
> |
sed "s/@*VERSION@/`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`/g" ./README.tmpl > $@ |
47 |
|
|
48 |
|
install: all ./Tool/genconf ./Tool/itworks |
49 |
< |
-mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/tewi $(DESTDIR)$(PREFIX)/etc $(DESTDIR)$(PREFIX)/www |
50 |
< |
if [ ! -e $(DESTDIR)$(PREFIX)/etc/tewi.conf ]; then ( ./Tool/genconf $(PREFIX) lib/tewi `echo $(LIBSUF) | sed 's/\.//g'` > $(DESTDIR)$(PREFIX)/etc/tewi.conf || ( rm $(DESTDIR)$(PREFIX)/etc/tewi.conf ; exit 1 ) ) ; fi |
49 |
> |
-mkdir -p* $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/tewi $(DESTDIR)$(PREFIX)/etc $(DESTDIR)$(PREFIX)/www |
50 |
> |
if [ '!' -e $(DESTDIR)$(PREFIX)/etc/tewi.conf ]; then ( ./Tool/genconf $(PREFIX) lib/tewi `echo $(LIBSUF) | sed 's/\.//g'` > $(DESTDIR)$(PREFIX)/etc/tewi.conf || ( rm $(DESTDIR)$(PREFIX)/etc/tewi.conf ; exit 1 ) ) ; fi |
51 |
|
cp mime.types $(DESTDIR)$(PREFIX)/ |
52 |
< |
if [ ! -e $(DESTDIR)$(PREFIX)/www/index.html ]; then ( ./Tool/itworks > $(DESTDIR)$(PREFIX)/www/index.html || ( rm $(DESTDIR)$(PREFIX)/www/index.html ; exit 1 ) ) ; fi |
53 |
< |
if [ ! -e $(DESTDIR)$(PREFIX)/www/pbtewi.gif ]; then ( cp Binary/pbtewi.gif $(DESTDIR)$(PREFIX)/www/ || ( rm $(DESTDIR)$(PREFIX)/www/pbtewi.gif ; exit 1 ) ) ; fi |
52 |
> |
if [ '!' -e $(DESTDIR)$(PREFIX)/www/index.html ]; then ( ./Tool/itworks > $(DESTDIR)$(PREFIX)/www/index.html || ( rm $(DESTDIR)$(PREFIX)/www/index.html ; exit 1 ) ) ; fi |
53 |
> |
if [ '!' -e $(DESTDIR)$(PREFIX)/www/pbtewi.gif ]; then ( cp Binary/pbtewi.gif $(DESTDIR)$(PREFIX)/www/ || ( rm $(DESTDIR)$(PREFIX)/www/pbtewi.gif ; exit 1 ) ) ; fi |
54 |
|
-cp ./Server/tewi $(DESTDIR)$(PREFIX)/bin/ |
55 |
|
-cp ./Server/tewi.exe $(DESTDIR)$(PREFIX)/bin/ |
56 |
|
-cp ./Server/tewi.nlm $(DESTDIR)$(PREFIX)/bin/ |