source: Makefile @ 256164c

Last change on this file since 256164c was 57da960, checked in by Wilmer van der Gaast <wilmer@…>, at 2011-12-10T22:43:10Z

Skype module packaging.

  • Property mode set to 100644
File size: 5.7 KB
Line 
1###########################
2## Makefile for BitlBee  ##
3##                       ##
4## Copyright 2002 Lintux ##
5###########################
6
7### DEFINITIONS
8
9-include Makefile.settings
10
11# Program variables
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)
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
14subdirs = lib protocols
15
16ifeq ($(TARGET),i586-mingw32msvc)
17objects += win32.o
18LFLAGS+=-lws2_32
19EFLAGS+=-lsecur32
20OUTFILE=bitlbee.exe
21else
22objects += unix.o conf.o log.o
23OUTFILE=bitlbee
24endif
25
26# Expansion of variables
27subdirobjs = $(foreach dir,$(subdirs),$(dir)/$(dir).o)
28
29all: $(OUTFILE) $(OTR_PI) $(SKYPE_PI) systemd
30        $(MAKE) -C doc
31ifdef SKYPE_PI
32        $(MAKE) -C protocols/skype doc
33endif
34
35uninstall: uninstall-bin uninstall-doc
36        @echo -e '\nmake uninstall does not remove files in '$(DESTDIR)$(ETCDIR)', you can use make uninstall-etc to do that.\n'
37
38install: install-bin install-doc install-plugins install-systemd
39        @if ! [ -d $(DESTDIR)$(CONFIG) ]; then echo -e '\nThe configuration directory $(DESTDIR)$(CONFIG) does not exist yet, don'\''t forget to create it!'; fi
40        @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
41        @echo
42
43.PHONY:   install   install-bin   install-etc   install-doc install-plugins install-systemd \
44        uninstall uninstall-bin uninstall-etc uninstall-doc \
45        all clean distclean tar $(subdirs)
46
47Makefile.settings:
48        @echo
49        @echo Run ./configure to create Makefile.settings, then rerun make
50        @echo
51
52clean: $(subdirs)
53        rm -f *.o $(OUTFILE) core utils/bitlbeed init/bitlbee*.service
54        $(MAKE) -C tests clean
55
56distclean: clean $(subdirs)
57        rm -rf .depend
58        rm -f Makefile.settings config.h bitlbee.pc
59        find . -name 'DEADJOE' -o -name '*.orig' -o -name '*.rej' -o -name '*~' -exec rm -f {} \;
60        @# May still be present in dirs of disabled protocols.
61        -find . -name .depend -exec rm -rf {} \;
62        $(MAKE) -C tests distclean
63
64check: all
65        $(MAKE) -C tests
66
67gcov: check
68        gcov *.c
69
70lcov: check
71        lcov --directory . --capture --output-file bitlbee.info
72        genhtml -o coverage bitlbee.info
73
74install-doc:
75        $(MAKE) -C doc install
76ifdef SKYPE_PI
77        $(MAKE) -C protocols/skype install-doc
78endif
79
80uninstall-doc:
81        $(MAKE) -C doc uninstall
82ifdef SKYPE_PI
83        $(MAKE) -C protocols/skype uninstall-doc
84endif
85
86install-bin:
87        mkdir -p $(DESTDIR)$(SBINDIR)
88        install -m 0755 $(OUTFILE) $(DESTDIR)$(SBINDIR)/$(OUTFILE)
89
90uninstall-bin:
91        rm -f $(DESTDIR)$(SBINDIR)/$(OUTFILE)
92
93install-dev:
94        mkdir -p $(DESTDIR)$(INCLUDEDIR)
95        install -m 0644 config.h $(DESTDIR)$(INCLUDEDIR)
96        for i in $(headers); do install -m 0644 $(SRCDIR)$$i $(DESTDIR)$(INCLUDEDIR); done
97        mkdir -p $(DESTDIR)$(PCDIR)
98        install -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR)
99
100uninstall-dev:
101        rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR)/$(hdr))
102        -rmdir $(DESTDIR)$(INCLUDEDIR)
103        rm -f $(DESTDIR)$(PCDIR)/bitlbee.pc
104
105install-etc:
106        mkdir -p $(DESTDIR)$(ETCDIR)
107        install -m 0644 $(SRCDIR)motd.txt $(DESTDIR)$(ETCDIR)/motd.txt
108        install -m 0644 $(SRCDIR)bitlbee.conf $(DESTDIR)$(ETCDIR)/bitlbee.conf
109
110uninstall-etc:
111        rm -f $(DESTDIR)$(ETCDIR)/motd.txt
112        rm -f $(DESTDIR)$(ETCDIR)/bitlbee.conf
113        -rmdir $(DESTDIR)$(ETCDIR)
114
115install-plugins: install-plugin-otr install-plugin-skype
116
117install-plugin-otr:
118ifdef OTR_PI
119        mkdir -p $(DESTDIR)$(PLUGINDIR)
120        install -m 0755 otr.so $(DESTDIR)$(PLUGINDIR)
121endif
122
123install-plugin-skype:
124ifdef SKYPE_PI
125        mkdir -p $(DESTDIR)$(PLUGINDIR)
126        install -m 0755 skype.so $(DESTDIR)$(PLUGINDIR)
127        mkdir -p $(DESTDIR)$(ETCDIR)/../skyped $(DESTDIR)$(BINDIR)
128        install -m 0644 $(SRCDIR)protocols/skype/skyped.cnf $(DESTDIR)$(ETCDIR)/../skyped/skyped.cnf
129        install -m 0644 $(SRCDIR)protocols/skype/skyped.conf.dist $(DESTDIR)$(ETCDIR)/../skyped/skyped.conf
130        install -m 0755 $(SRCDIR)protocols/skype/skyped.py $(DESTDIR)$(BINDIR)/skyped
131        make -C protocols/skype install-doc
132endif
133
134systemd:
135ifdef SYSTEMDSYSTEMUNITDIR
136        sed 's|@sbindir@|$(BINDIR)|' init/bitlbee.service.in > init/bitlbee.service
137        sed 's|@sbindir@|$(BINDIR)|' init/bitlbee@.service.in > init/bitlbee@.service
138endif
139
140install-systemd:
141ifdef SYSTEMDSYSTEMUNITDIR
142ifeq ($(shell id -u),0)
143        mkdir -p $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
144        install -m 0644 init/bitlbee.service $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
145        install -m 0644 init/bitlbee@.service $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
146        install -m 0644 init/bitlbee.socket $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
147else
148        @echo Not root, so not installing systemd files.
149endif
150endif
151
152tar:
153        fakeroot debian/rules clean || make distclean
154        x=$$(basename $$(pwd)); \
155        cd ..; \
156        tar czf $$x.tar.gz --exclude=debian --exclude=.bzr* --exclude=.depend $$x
157
158$(subdirs):
159        @$(MAKE) -C $@ $(MAKECMDGOALS)
160
161$(OTR_PI): %.so: $(SRCDIR)%.c
162        @echo '*' Building plugin $@
163        @$(CC) $(CFLAGS) -fPIC -shared $(LDFLAGS) $< -o $@ $(OTRFLAGS)
164
165$(SKYPE_PI): $(SRCDIR)protocols/skype/skype.c
166        @echo '*' Building plugin skype
167        @$(CC) $(CFLAGS) -fPIC -shared $< -o $@
168
169$(objects): %.o: $(SRCDIR)%.c
170        @echo '*' Compiling $<
171        @$(CC) -c $(CFLAGS) $< -o $@
172
173$(objects): Makefile Makefile.settings config.h
174
175$(OUTFILE): $(objects) $(subdirs)
176        @echo '*' Linking $(OUTFILE)
177        @$(CC) $(objects) $(subdirobjs) -o $(OUTFILE) $(LFLAGS) $(EFLAGS)
178ifndef DEBUG
179        @echo '*' Stripping $(OUTFILE)
180        @-$(STRIP) $(OUTFILE)
181endif
182
183ctags: 
184        ctags `find . -name "*.c"` `find . -name "*.h"`
185
186# Using this as a bogus Make target to test if a GNU-compatible version of
187# make is available.
188helloworld:
189        @echo Hello World
190
191-include .depend/*.d
192# DO NOT DELETE
Note: See TracBrowser for help on using the repository browser.