/[tewi]/Makefile
ViewVC logotype

Diff of /Makefile

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.1 by nishi, Thu Oct 17 09:53:38 2024 UTC Revision 1.6 by nishi, Sun Nov 3 13:49:38 2024 UTC
# Line 11  include Platform/$(PLATFORM).mk Line 11  include Platform/$(PLATFORM).mk
11    
12  FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX)  FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX)
13    
14  .PHONY: all format clean ./Server ./Common ./Module get-version src-archive  .PHONY: all prepare-config format clean ./Server ./Common ./Module get-version src-archive
15    
16  all: ./Server $(MODULE)  all: ./Server $(MODULE)
17    
18    prepare-config:
19            if [ '!' -f config.h ]; then cp config.h.tmpl config.h ; fi
20    
21  src-archive: clean  src-archive: clean
22          @svn cleanup --remove-unversioned          @svn cleanup --remove-unversioned
23          cp -rf . /tmp/tewi-`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`          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'`          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 ./          mv /tmp/tewi-`grep "define TW_VERSION" Server/tw_version.h | grep -Eom 1 '"[^\]+' | sed 's/^"//g'`.tar.gz ./
26            rm -rf /tmp/tewi-*
27    
28  ./Tool/option: ./Tool/option.c config.h  ./Tool/option: ./Tool/option.c config.h prepare-config
29          cc -o $@ ./Tool/option.c          cc -o $@ ./Tool/option.c
30    
31  ./Tool/genconf: ./Tool/genconf.c config.h  ./Tool/genconf: ./Tool/genconf.c config.h prepare-config
32          cc -o $@ ./Tool/genconf.c          cc -o $@ ./Tool/genconf.c
33    
34  ./Tool/itworks: ./Tool/itworks.c config.h  ./Tool/itworks: ./Tool/itworks.c config.h prepare-config
35          cc -o $@ ./Tool/itworks.c          cc -o $@ ./Tool/itworks.c
36    
37  ./Server:: ./Common ./Tool/option ./Tool/genconf ./Tool/itworks  ./Server:: ./Common ./Tool/option ./Tool/genconf ./Tool/itworks prepare-config
38          $(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)`"          $(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)`"
39    
40  ./Module:: ./Common  ./Module:: ./Common prepare-config
41          $(MAKE) -C $@ $(FLAGS)          $(MAKE) -C $@ $(FLAGS)
42    
43  ./Common::  ./Common:: prepare-config
44          $(MAKE) -C $@ $(FLAGS)          $(MAKE) -C $@ $(FLAGS)
45    
46  ./README: ./README.tmpl ./Server/tw_version.h  ./README: ./README.tmpl ./Server/tw_version.h
# Line 44  src-archive: clean Line 48  src-archive: clean
48    
49  install: all ./Tool/genconf ./Tool/itworks  install: all ./Tool/genconf ./Tool/itworks
50          -mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/tewi $(DESTDIR)$(PREFIX)/etc $(DESTDIR)$(PREFIX)/www          -mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/lib/tewi $(DESTDIR)$(PREFIX)/etc $(DESTDIR)$(PREFIX)/www
51          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          if [ '!' -f $(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
52          cp mime.types $(DESTDIR)$(PREFIX)/          cp mime.types $(DESTDIR)$(PREFIX)/
53          if [ ! -e $(DESTDIR)$(PREFIX)/www/index.html ]; then ( ./Tool/itworks > $(DESTDIR)$(PREFIX)/www/index.html || ( rm $(DESTDIR)$(PREFIX)/www/index.html ; exit 1 ) ) ; fi          if [ '!' -f $(DESTDIR)$(PREFIX)/www/index.html ]; then ( ./Tool/itworks > $(DESTDIR)$(PREFIX)/www/index.html || ( rm $(DESTDIR)$(PREFIX)/www/index.html ; exit 1 ) ) ; fi
54          if [ ! -e $(DESTDIR)$(PREFIX)/www/pbtewi.gif ]; then ( cp Binary/pbtewi.gif $(DESTDIR)$(PREFIX)/www/ || ( rm $(DESTDIR)$(PREFIX)/www/pbtewi.gif ; exit 1 ) ) ; fi          if [ '!' -f $(DESTDIR)$(PREFIX)/www/pbtewi.gif ]; then ( cp Binary/pbtewi.gif $(DESTDIR)$(PREFIX)/www/ || ( rm $(DESTDIR)$(PREFIX)/www/pbtewi.gif ; exit 1 ) ) ; fi
55          -cp ./Server/tewi $(DESTDIR)$(PREFIX)/bin/          -cp ./Server/tewi $(DESTDIR)$(PREFIX)/bin/
56          -cp ./Server/tewi.exe $(DESTDIR)$(PREFIX)/bin/          -cp ./Server/tewi.exe $(DESTDIR)$(PREFIX)/bin/
57          -cp ./Server/tewi.nlm $(DESTDIR)$(PREFIX)/bin/          -cp ./Server/tewi.nlm $(DESTDIR)$(PREFIX)/bin/


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

nishi@chaotic.ninja
ViewVC Help
Powered by ViewVC 1.3.0-dev