From c1724bdcda42ddc80d88bfdc22f8bc7d96736f32 Mon Sep 17 00:00:00 2001
From: Per Cederqvist <ceder@lysator.liu.se>
Date: Mon, 30 Oct 2006 18:24:51 +0000
Subject: [PATCH] Provide a makefile that can install the system.

* Makefile: New file
  (BINDIR): New constant.
  (all): New target.  Do nothing.
  (install): New target.
---
 ChangeLog |  7 +++++++
 Makefile  | 10 ++++++++++
 2 files changed, 17 insertions(+)
 create mode 100644 Makefile

diff --git a/ChangeLog b/ChangeLog
index 1d135a7..2aa08d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2006-10-30  Per Cederqvist  <ceder@sedesopim.lysator.liu.se>
 
+	Provide a makefile that can install the system.
+	
+	* Makefile: New file
+	(BINDIR): New constant.
+	(all): New target.  Do nothing.
+	(install): New target.
+
 	Print status.
 
 	* lysrdiff-status: New file.  Print some status information about
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4d18b16
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+BINDIR=/nobackup/backup.lysator/bin
+
+all:;
+
+install:
+	cp backup-all $(BINDIR)/
+	cp backup-one-task $(BINDIR)/
+	cp distribute-tasks $(BINDIR)/
+	cp fetch-backup-work $(BINDIR)/
+	cp lysrdiff-status $(BINDIR)/
-- 
GitLab