- Timestamp:
- 2006-03-05T20:07:33Z (19 years ago)
- Branches:
- master
- Children:
- 728a981
- Parents:
- f665dab (diff), 27ac72d (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
rf665dab r96ace1b 11 11 # Program variables 12 12 objects = account.o bitlbee.o conf.o crypting.o help.o ini.o ipc.o irc.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_text.o unix.o url.o user.o util.o 13 headers = account.h bitlbee.h commands.h conf.h config.h crypting.h help.h ini.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h url.h user.h protocols/http_client.h protocols/md5.h protocols/nogaim.h protocols/proxy.h protocols/sha.h protocols/ssl_client.h 13 14 subdirs = protocols 14 15 … … 22 23 $(MAKE) -C doc 23 24 24 uninstall: uninstall-bin uninstall-doc 25 uninstall: uninstall-bin uninstall-doc 25 26 @echo -e '\nmake uninstall does not remove files in '$(DESTDIR)$(ETCDIR)', you can use make uninstall-etc to do that.\n' 26 27 … … 58 59 uninstall-bin: 59 60 rm -f $(DESTDIR)$(BINDIR)/$(OUTFILE) 61 62 install-dev: 63 mkdir -p $(DESTDIR)$(INCLUDEDIR) 64 install -m 0644 $(headers) $(DESTDIR)$(INCLUDEDIR) 65 mkdir -p $(DESTDIR)$(PCDIR) 66 install -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR) 67 68 uninstall-dev: 69 rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR)/$(hdr)) 70 -rmdir $(DESTDIR)$(INCLUDEDIR) 71 rm -f $(DESTDIR)$(PCDIR)/bitlbee.pc 60 72 61 73 install-etc:
Note: See TracChangeset
for help on using the changeset viewer.