Changeset 5155570
- Timestamp:
- 2011-07-03T14:15:13Z (13 years ago)
- Branches:
- master
- Children:
- b518cdc
- Parents:
- b5a5938
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rb5a5938 r5155570 29 29 all: $(OUTFILE) $(OTR_PI) $(SKYPE_PI) systemd 30 30 $(MAKE) -C doc 31 ifdef SKYPE_PI 32 $(MAKE) -C protocols/skype doc 33 endif 31 34 32 35 uninstall: uninstall-bin uninstall-doc … … 71 74 install-doc: 72 75 $(MAKE) -C doc install 76 ifdef SKYPE_PI 77 $(MAKE) -C protocols/skype install-doc 78 endif 73 79 74 80 uninstall-doc: 75 81 $(MAKE) -C doc uninstall 82 ifdef SKYPE_PI 83 $(MAKE) -C protocols/skype uninstall-doc 84 endif 76 85 77 86 install-bin: -
protocols/skype/Makefile
rb5a5938 r5155570 1 -include config.mak 1 -include ../../Makefile.settings 2 ifdef SRCDIR 3 SRCDIR := $(SRCDIR)protocls/skype/ 4 endif 2 5 3 6 VERSION = 0.9.0 … … 80 83 -ba bitlbee-skype-$(VERSION).tar.gz 81 84 82 doc: HEADER.html Changelog AUTHORS 85 doc: skyped.1 86 87 install-doc: 88 mkdir -p $(DESTDIR)$(MANDIR)/man1/ 89 install -m 0644 $(SRCDIR)skyped.1 $(DESTDIR)$(MANDIR)/man1/ 90 91 uninstall-doc: 92 rm -f $(DESTDIR)$(MANDIR)/man1/skyped.1* 83 93 84 94 HEADER.html: README Makefile
Note: See TracChangeset
for help on using the changeset viewer.