Makefile.patch 867 B

1234567891011121314151617181920212223242526272829
  1. --- Makefile.orig 2009-04-07 19:10:23.000000000 +0200
  2. +++ Makefile 2009-04-07 19:11:12.000000000 +0200
  3. @@ -4,19 +4,22 @@
  4. DESTDIR ?= /usr
  5. all:
  6. - @echo -e "dxcc - make [install|uninstall|clean|dist] \nCheck README for help."
  7. install:
  8. - install -d -v $(DESTDIR)/share/man/man1/
  9. - install -d -v $(DESTDIR)/share/dxcc/
  10. + install -d $(DESTDIR)/share/man/man1/
  11. + install -d $(DESTDIR)/share/dxcc/
  12. + install -d $(DESTDIR)/share/pixmaps/
  13. + install -d $(DESTDIR)/bin/
  14. install -m 0644 dxcc.1 $(DESTDIR)/share/man/man1/
  15. install -m 0644 earth.gif $(DESTDIR)/share/dxcc/
  16. + install -m 0644 dxcc.png $(DESTDIR)/share/pixmaps/
  17. install -m 0755 dxcc $(DESTDIR)/bin/
  18. uninstall:
  19. rm -f $(DESTDIR)/bin/dxcc
  20. rm -f $(DESTDIR)/share/man/man1/dxcc.1
  21. rm -f $(DESTDIR)/share/dxcc/earth.gif
  22. + rm -r $(DESTDIR)/share/pixmaps/dxcc.png
  23. clean:
  24. rm -f *~