source: Makefile @ 0075527

Last change on this file since 0075527 was 0075527, checked in by Nick Murdoch <nick@…>, at 2013-03-17T13:38:14Z

Add existing git project files, and modify bitlbee's build script to build the plugin.

  • Property mode set to 100644
File size: 6.5 KB
RevLine 
[b7d3cc34]1###########################
2## Makefile for BitlBee  ##
3##                       ##
4## Copyright 2002 Lintux ##
5###########################
6
7### DEFINITIONS
8
9-include Makefile.settings
10
11# Program variables
[858ea01]12objects = bitlbee.o dcc.o help.o ipc.o irc.o irc_im.o irc_channel.o irc_commands.o irc_send.o irc_user.o irc_util.o nick.o $(OTR_BI) query.o root_commands.o set.o storage.o $(STORAGE_OBJS)
[3063f81]13headers = bitlbee.h commands.h conf.h config.h help.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h lib/events.h lib/ftutil.h lib/http_client.h lib/ini.h lib/md5.h lib/misc.h lib/proxy.h lib/sha1.h lib/ssl_client.h lib/url.h protocols/account.h protocols/bee.h protocols/ft.h protocols/nogaim.h
[84b045d]14subdirs = lib protocols
[b7d3cc34]15
[1bf9492]16ifeq ($(TARGET),i586-mingw32msvc)
[d1d6776]17objects += win32.o
[73c2dce]18LFLAGS+=-lws2_32
19EFLAGS+=-lsecur32
[6a72a57]20OUTFILE=bitlbee.exe
[d1d6776]21else
[4146a07]22objects += unix.o conf.o log.o
[6a72a57]23OUTFILE=bitlbee
[d1d6776]24endif
25
[b7d3cc34]26# Expansion of variables
27subdirobjs = $(foreach dir,$(subdirs),$(dir)/$(dir).o)
28
[0075527]29all: $(OUTFILE) $(OTR_PI) $(SKYPE_PI) $(PYTHON_PI) doc systemd
[5155570]30ifdef SKYPE_PI
31        $(MAKE) -C protocols/skype doc
32endif
[b7d3cc34]33
[4b53c65]34doc:
35        $(MAKE) -C doc
36
[cdb92c5]37uninstall: uninstall-bin uninstall-doc
[b7d3cc34]38        @echo -e '\nmake uninstall does not remove files in '$(DESTDIR)$(ETCDIR)', you can use make uninstall-etc to do that.\n'
39
[417002e]40install: install-bin install-doc install-plugins install-systemd
[b7d3cc34]41        @if ! [ -d $(DESTDIR)$(CONFIG) ]; then echo -e '\nThe configuration directory $(DESTDIR)$(CONFIG) does not exist yet, don'\''t forget to create it!'; fi
42        @if ! [ -e $(DESTDIR)$(ETCDIR)/bitlbee.conf ]; then echo -e '\nNo files are installed in '$(DESTDIR)$(ETCDIR)' by make install. Run make install-etc to do that.'; fi
43        @echo
44
[417002e]45.PHONY:   install   install-bin   install-etc   install-doc install-plugins install-systemd \
[b7d3cc34]46        uninstall uninstall-bin uninstall-etc uninstall-doc \
[4b53c65]47        all clean distclean tar $(subdirs) doc
[b7d3cc34]48
49Makefile.settings:
50        @echo
51        @echo Run ./configure to create Makefile.settings, then rerun make
52        @echo
53
54clean: $(subdirs)
[c14959d]55        rm -f *.o $(OUTFILE) core utils/bitlbeed init/bitlbee*.service
[66b9e86e]56        $(MAKE) -C tests clean
[757e1e0]57ifdef SKYPE_PI
58        $(MAKE) -C protocols/skype clean
59endif
[0075527]60ifdef PYTHON_PI
61        $(MAKE) -C protocols/python clean
62endif
[b7d3cc34]63
64distclean: clean $(subdirs)
[b0a89cc]65        rm -rf .depend
[b3c467b]66        rm -f Makefile.settings config.h bitlbee.pc
[34c0e90]67        find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \;
[b0a89cc]68        @# May still be present in dirs of disabled protocols.
[b41d5d2]69        -find . -name .depend -exec rm -rf {} \;
[dcf0f3e]70        $(MAKE) -C tests distclean
[b7d3cc34]71
[66b9e86e]72check: all
[c2fa827]73        $(MAKE) -C tests
74
[66b9e86e]75gcov: check
76        gcov *.c
77
[348c11b]78lcov: check
79        lcov --directory . --capture --output-file bitlbee.info
80        genhtml -o coverage bitlbee.info
81
[b7d3cc34]82install-doc:
83        $(MAKE) -C doc install
[5155570]84ifdef SKYPE_PI
85        $(MAKE) -C protocols/skype install-doc
86endif
[b7d3cc34]87
88uninstall-doc:
89        $(MAKE) -C doc uninstall
[5155570]90ifdef SKYPE_PI
91        $(MAKE) -C protocols/skype uninstall-doc
92endif
[b7d3cc34]93
94install-bin:
[57da960]95        mkdir -p $(DESTDIR)$(SBINDIR)
96        install -m 0755 $(OUTFILE) $(DESTDIR)$(SBINDIR)/$(OUTFILE)
[b7d3cc34]97
98uninstall-bin:
[57da960]99        rm -f $(DESTDIR)$(SBINDIR)/$(OUTFILE)
[b7d3cc34]100
[cdb92c5]101install-dev:
[e506d6c]102        mkdir -p $(DESTDIR)$(INCLUDEDIR)
[4af3050]103        install -m 0644 config.h $(DESTDIR)$(INCLUDEDIR)
[7fa5c19]104        for i in $(headers); do install -m 0644 $(_SRCDIR_)$$i $(DESTDIR)$(INCLUDEDIR); done
[e506d6c]105        mkdir -p $(DESTDIR)$(PCDIR)
106        install -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR)
107
[cdb92c5]108uninstall-dev:
109        rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR)/$(hdr))
110        -rmdir $(DESTDIR)$(INCLUDEDIR)
[e506d6c]111        rm -f $(DESTDIR)$(PCDIR)/bitlbee.pc
112
[b7d3cc34]113install-etc:
114        mkdir -p $(DESTDIR)$(ETCDIR)
[7fa5c19]115        install -m 0644 $(_SRCDIR_)motd.txt $(DESTDIR)$(ETCDIR)/motd.txt
116        install -m 0644 $(_SRCDIR_)bitlbee.conf $(DESTDIR)$(ETCDIR)/bitlbee.conf
[b7d3cc34]117
118uninstall-etc:
119        rm -f $(DESTDIR)$(ETCDIR)/motd.txt
120        rm -f $(DESTDIR)$(ETCDIR)/bitlbee.conf
121        -rmdir $(DESTDIR)$(ETCDIR)
122
[0075527]123install-plugins: install-plugin-otr install-plugin-skype install-plugin-python
[57da960]124
125install-plugin-otr:
[858ea01]126ifdef OTR_PI
127        mkdir -p $(DESTDIR)$(PLUGINDIR)
128        install -m 0755 otr.so $(DESTDIR)$(PLUGINDIR)
129endif
[57da960]130
131install-plugin-skype:
[370899f]132ifdef SKYPE_PI
133        mkdir -p $(DESTDIR)$(PLUGINDIR)
134        install -m 0755 skype.so $(DESTDIR)$(PLUGINDIR)
[57da960]135        mkdir -p $(DESTDIR)$(ETCDIR)/../skyped $(DESTDIR)$(BINDIR)
[7fa5c19]136        install -m 0644 $(_SRCDIR_)protocols/skype/skyped.cnf $(DESTDIR)$(ETCDIR)/../skyped/skyped.cnf
137        install -m 0644 $(_SRCDIR_)protocols/skype/skyped.conf.dist $(DESTDIR)$(ETCDIR)/../skyped/skyped.conf
138        install -m 0755 $(_SRCDIR_)protocols/skype/skyped.py $(DESTDIR)$(BINDIR)/skyped
[57da960]139        make -C protocols/skype install-doc
[370899f]140endif
[858ea01]141
[0075527]142install-plugin-python:
143ifdef PYTHON_PI
144        mkdir -p $(DESTDIR)$(PLUGINDIR)
145        install -m 0755 bpython.so $(DESTDIR)$(PLUGINDIR)
146endif
147
[417002e]148systemd:
149ifdef SYSTEMDSYSTEMUNITDIR
[52bba15]150        sed 's|@sbindir@|$(SBINDIR)|' init/bitlbee.service.in > init/bitlbee.service
151        sed 's|@sbindir@|$(SBINDIR)|' init/bitlbee@.service.in > init/bitlbee@.service
[417002e]152endif
153
154install-systemd:
155ifdef SYSTEMDSYSTEMUNITDIR
[13688ec]156ifeq ($(shell id -u),0)
[417002e]157        mkdir -p $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
158        install -m 0644 init/bitlbee.service $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
159        install -m 0644 init/bitlbee@.service $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
160        install -m 0644 init/bitlbee.socket $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
161else
162        @echo Not root, so not installing systemd files.
163endif
164endif
165
[b7d3cc34]166tar:
167        fakeroot debian/rules clean || make distclean
168        x=$$(basename $$(pwd)); \
169        cd ..; \
[b0a89cc]170        tar czf $$x.tar.gz --exclude=debian --exclude=.bzr* --exclude=.depend $$x
[b7d3cc34]171
172$(subdirs):
173        @$(MAKE) -C $@ $(MAKECMDGOALS)
174
[7fa5c19]175$(OTR_PI): %.so: $(_SRCDIR_)%.c
[858ea01]176        @echo '*' Building plugin $@
[9fc017d]177        @$(CC) $(CFLAGS) -fPIC -shared $(LDFLAGS) $< -o $@ $(OTRFLAGS)
[858ea01]178
[7fa5c19]179$(SKYPE_PI): $(_SRCDIR_)protocols/skype/skype.c
[370899f]180        @echo '*' Building plugin skype
[0075527]181        $(CC) $(CFLAGS) $(SKYPEFLAGS) $< -o $@
182
183$(PYTHON_PI): $(_SRCDIR_)protocols/python/src/bpython.c
184        @echo '*' Building plugin python
185        $(CC) $(CFLAGS) $(PYTHONCFLAGS) $< -o $@ $(EFLAGS) $(PYTHONLDFLAGS)
[370899f]186
[7fa5c19]187$(objects): %.o: $(_SRCDIR_)%.c
[b7d3cc34]188        @echo '*' Compiling $<
[7281ad1]189        @$(CC) -c $(CFLAGS) $(CFLAGS_BITLBEE) $< -o $@
[b7d3cc34]190
191$(objects): Makefile Makefile.settings config.h
192
193$(OUTFILE): $(objects) $(subdirs)
194        @echo '*' Linking $(OUTFILE)
[7281ad1]195        @$(CC) $(objects) $(subdirobjs) -o $(OUTFILE) $(LDFLAGS_BITLBEE) $(LFLAGS) $(EFLAGS)
[b7d3cc34]196ifndef DEBUG
197        @echo '*' Stripping $(OUTFILE)
198        @-$(STRIP) $(OUTFILE)
199endif
200
201ctags: 
202        ctags `find . -name "*.c"` `find . -name "*.h"`
[4fca1db]203
204# Using this as a bogus Make target to test if a GNU-compatible version of
205# make is available.
206helloworld:
207        @echo Hello World
[b0a89cc]208
[4b53c65]209# Check if we can load the helpfile. (This fails if some article is >1KB.)
210# If print returns a NULL pointer, the file is unusable.
211testhelp: doc
212        gdb --eval-command='b main' --eval-command='r' \
213            --eval-command='print help_init(&global->helpfile, "doc/user-guide/help.txt")' \
214            $(OUTFILE) < /dev/null
215
[b0a89cc]216-include .depend/*.d
[a0c6fc5]217# DO NOT DELETE
Note: See TracBrowser for help on using the repository browser.