blob: 3a78eb55e5770fdd4f1f2656814d524f1e44676d (
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
29
30
31
32
33
|
$FreeBSD$
--- Makefile.orig Wed Jul 4 05:46:41 2001
+++ Makefile Mon May 13 15:32:34 2002
@@ -11,21 +11,21 @@
all:
install:
- install -D --mode=755 $(PROGRAMNAME) $(DESTDIR)/$(BINDIR)/$(PROGRAMNAME) #put the main program into the bin directory
+ install --mode=755 $(PROGRAMNAME) $(DESTDIR)/$(BINDIR)/$(PROGRAMNAME) #put the main program into the bin directory
install --directory $(DESTDIR)/$(MYDATADIR) #create directory to hold project files
install --mode=644 gonvert.glade $(DESTDIR)/$(MYDATADIR) #copy glade file over
install --directory $(DESTDIR)/$(MYDATADIR)/pixmaps #create pixmap directory to hold project pictures
install --mode=644 pixmaps/*.png $(DESTDIR)/$(MYDATADIR)/pixmaps #copy project specific pictures over
install --directory $(DESTDIR)/$(DATADIR)/pixmaps #create pixmaps directory to hold gnome pictures
install --mode=644 pixmaps/gonvert_icon.png $(DESTDIR)/$(DATADIR)/pixmaps #copy gnome pictures over
- install --directory $(DESTDIR)/$(DATADIR)/gnome/apps/Utilities #create a directory for gnome menu description
- install --mode=644 gonvert.desktop $(DESTDIR)/$(DATADIR)/gnome/apps/Utilities #copy the gnome menu description
- install --directory $(MYDOCDIR) #create a directory that holds project documentation
- install --mode=644 doc/* $(MYDOCDIR) #copy project documentation
+ install --directory $(DESTDIR)/$(DATADIR)/apps/Utilities #create a directory for gnome menu description
+ install --mode=644 gonvert.desktop $(DESTDIR)/$(DATADIR)/apps/Utilities #copy the gnome menu description
+# install --directory $(MYDOCDIR) #create a directory that holds project documentation
+# install --mode=644 doc/* $(MYDOCDIR) #copy project documentation
uninstall:
rm -f $(DESTDIR)/$(BINDIR)/$(PROGRAMNAME)
- rm -f $(DESTDIR)/$(DATADIR)/gnome/apps/Utilities/gonvert.desktop
+ rm -f $(DESTDIR)/$(DATADIR)/apps/Utilities/gonvert.desktop
rm -f $(DESTDIR)/$(DATADIR)/pixmaps/gonvert_icon.png
rm -rf $(DATADIR)/gonvert
rm -rf $(DESTDIR)/$(DATADIR)/doc/$(NAME)-$(VERSION)
|