Changeset 168d3bb
- Timestamp:
- 2014-10-05T20:45:20Z (10 years ago)
- Branches:
- master
- Children:
- 5cb21d1, c27a923
- Parents:
- f329dfc (diff), ebe2c5e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rf329dfc r168d3bb 11 11 # Program variables 12 12 objects = 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) unix.o conf.o log.o 13 headers = $(wildcard *.h lib/*.hprotocols/*.h)13 headers = $(wildcard $(_SRCDIR_)*.h $(_SRCDIR_)lib/*.h $(_SRCDIR_)protocols/*.h) 14 14 subdirs = lib protocols 15 15 … … 94 94 mkdir -p $(DESTDIR)$(INCLUDEDIR) 95 95 $(INSTALL) -m 0644 config.h $(DESTDIR)$(INCLUDEDIR) 96 for i in $(headers); do $(INSTALL) -m 0644 $ (_SRCDIR_)$$i $(DESTDIR)$(INCLUDEDIR); done96 for i in $(headers); do $(INSTALL) -m 0644 $$i $(DESTDIR)$(INCLUDEDIR); done 97 97 mkdir -p $(DESTDIR)$(PCDIR) 98 98 $(INSTALL) -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR) … … 141 141 install-systemd: systemd 142 142 ifdef SYSTEMDSYSTEMUNITDIR 143 ifeq ($(shell id -u),0)144 143 mkdir -p $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR) 145 144 $(INSTALL) -m 0644 init/bitlbee.service $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR) … … 147 146 $(INSTALL) -m 0644 $(_SRCDIR_)init/bitlbee.socket $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR) 148 147 else 149 @echo Not root, so not installing systemd files. 150 endif 148 @echo SYSTEMDSYSTEMUNITDIR not set, not installing systemd unit files. 151 149 endif 152 150
Note: See TracChangeset
for help on using the changeset viewer.