blob: f02d5971783b612b41f1564165831e6163715737 (
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
|
--- Makefile.orig 2015-03-08 12:05:58 UTC
+++ Makefile
@@ -19,7 +19,7 @@ usage:
@echo ""
@echo "Which is where the libraries etc look for it."
-PREFIX?=/opt/netsurf
+PREFIX?=%%PREFIX%%
BASE=$(DESTDIR)$(PREFIX)/share/netsurf-buildsystem
@@ -33,16 +33,13 @@ TESTTOOLS := testrunner.pl
CITOOLS := jenkins-build.sh
install:
- mkdir -p $(BASE)/makefiles $(BASE)/testtools $(BASE)/citools
+ mkdir -p $(BASE)/makefiles $(BASE)/testtools
for M in $(MAKEFILES); do \
cp makefiles/$$M $(BASE)/makefiles/; \
done
for T in $(TESTTOOLS); do \
cp testtools/$$T $(BASE)/testtools/; \
done
- for C in $(CITOOLS); do \
- cp citools/$$C $(BASE)/citools/; \
- done
# Distribution
# This constructs a distribution tar from the last git tag. It ensures
|