blob: 6995224989e36b5abbaa6fec11d3c6b1c63e4823 (
plain) (
blame)
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
34
|
--- Makefile.orig Tue Jun 29 10:42:05 2004
+++ Makefile Sun Jul 11 23:11:10 2004
@@ -4,12 +4,13 @@
PREFIX = /usr/local
LOCALEDIR = $(PREFIX)/share/locale
-ASSETMLDIR = /usr/share/assetml
+ASSETMLDIR = $(PREFIX)/share/gnome/assetml
PYTHON = /usr/bin/env python
-DOCDIR = $(PREFIX)/doc/childsplay
+DOCDIR = $(PREFIX)/share/doc/childsplay
MANDIR = $(PREFIX)/man
-DESTDIR = $(PREFIX)/games/childsplay
+DESTDIR = $(PREFIX)/childsplay
+all: childsplay
default: childsplay
install:
@@ -36,12 +37,12 @@
@cp -rf lib $(DESTDIR)
@echo "Copy docs to $(MANDIR) and $(DOCDIR)"
- @cp -rf man/childsplay.6.gz $(MANDIR)
+ @cp -rf man/childsplay.6.gz $(MANDIR)/man6
@cp -rf doc/* $(DOCDIR)
@echo "Looking for old locale files, and removing them"
@sh ./cleanup.sh
-
+
@echo "Copy locales to $(LOCALEDIR)"
@cp -rf locale/* $(LOCALEDIR)
|