Changes in Makefile [4af3050:4fca1db]
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r4af3050 r4fca1db 10 10 11 11 # Program variables 12 objects = account.o bitlbee.o chat.o dcc.o help.o ipc.o irc.o irc_commands.o nick.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS) user.o13 headers = account.h bitlbee.h commands.h conf.h help.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h user.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/ft.h protocols/nogaim.h12 objects = account.o bitlbee.o chat.o crypting.o help.o ipc.o irc.o irc_commands.o nick.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS) user.o 13 headers = account.h bitlbee.h commands.h conf.h config.h crypting.h help.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h user.h lib/events.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/nogaim.h 14 14 subdirs = lib protocols 15 15 … … 82 82 install-dev: 83 83 mkdir -p $(DESTDIR)$(INCLUDEDIR) 84 install -m 0644 config.h $(DESTDIR)$(INCLUDEDIR) 85 for i in $(headers); do install -m 0644 $(SRCDIR)$$i $(DESTDIR)$(INCLUDEDIR); done 84 install -m 0644 $(headers) $(DESTDIR)$(INCLUDEDIR) 86 85 mkdir -p $(DESTDIR)$(PCDIR) 87 86 install -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR) … … 94 93 install-etc: 95 94 mkdir -p $(DESTDIR)$(ETCDIR) 96 install -m 0644 $(SRCDIR)motd.txt $(DESTDIR)$(ETCDIR)/motd.txt97 install -m 0644 $(SRCDIR)bitlbee.conf $(DESTDIR)$(ETCDIR)/bitlbee.conf95 install -m 0644 motd.txt $(DESTDIR)$(ETCDIR)/motd.txt 96 install -m 0644 bitlbee.conf $(DESTDIR)$(ETCDIR)/bitlbee.conf 98 97 99 98 uninstall-etc: … … 111 110 @$(MAKE) -C $@ $(MAKECMDGOALS) 112 111 113 $(objects): %.o: $(SRCDIR)%.c112 $(objects): %.o: %.c 114 113 @echo '*' Compiling $< 115 114 @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracChangeset
for help on using the changeset viewer.