Changeset cdb92c5
- Timestamp:
- 2006-03-02T12:43:36Z (19 years ago)
- Branches:
- master
- Children:
- 27ac72d
- Parents:
- 1e5fcac
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r1e5fcac rcdb92c5 21 21 $(MAKE) -C doc 22 22 23 uninstall: uninstall-bin uninstall-doc uninstall-header uninstall-pc23 uninstall: uninstall-bin uninstall-doc 24 24 @echo -e '\nmake uninstall does not remove files in '$(DESTDIR)$(ETCDIR)', you can use make uninstall-etc to do that.\n' 25 25 26 install: install-bin install-doc install-header install-pc26 install: install-bin install-doc 27 27 @if ! [ -d $(DESTDIR)$(CONFIG) ]; then echo -e '\nThe configuration directory $(DESTDIR)$(CONFIG) does not exist yet, don'\''t forget to create it!'; fi 28 28 @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 … … 58 58 rm -f $(DESTDIR)$(BINDIR)/$(OUTFILE) 59 59 60 install- header:60 install-dev: 61 61 mkdir -p $(DESTDIR)$(INCLUDEDIR) 62 62 install -m 0644 $(headers) $(DESTDIR)$(INCLUDEDIR) 63 64 uninstall-header:65 rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR)/$(hdr))66 -rmdir $(DESTDIR)$(INCLUDEDIR)67 68 install-pc:69 63 mkdir -p $(DESTDIR)$(PCDIR) 70 64 install -m 0644 bitlbee.pc $(DESTDIR)$(PCDIR) 71 65 72 uninstall-pc: 66 uninstall-dev: 67 rm -f $(foreach hdr,$(headers),$(DESTDIR)$(INCLUDEDIR)/$(hdr)) 68 -rmdir $(DESTDIR)$(INCLUDEDIR) 73 69 rm -f $(DESTDIR)$(PCDIR)/bitlbee.pc 74 70
Note: See TracChangeset
for help on using the changeset viewer.