summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1cee5bb
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,29 @@
+all: usage
+
+usage:
+ @echo "make install PREFIX=/somewhere"
+ @echo ""
+ @echo "Will install the makefiles, and test tools into $PREFIX/share/netsurf-buildsystem"
+ @echo ""
+ @echo "Which is where the libraries etc look for it."
+
+PREFIX?=/opt/netsurf
+
+BASE=$(PREFIX)/share/netsurf-buildsystem
+
+MAKEFILES := $(patsubst %,Makefile.%, \
+ top tools subdir pkgconfig \
+ clang gcc norcroft open64 \
+)
+
+TESTTOOLS := testrunner.pl
+
+install:
+ 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
+