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