File: 0014-General-Makefile.patch

package info (click to toggle)
freespeech 1.0m-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,640 kB
  • sloc: ansic: 5,315; perl: 202; makefile: 114
file content (32 lines) | stat: -rw-r--r-- 633 bytes parent folder | download | duplicates (2)
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
From: "Igor B. Poretsky" <poretsky@mlbox.ru>
Date: Wed, 15 Feb 2023 14:38:49 +0300
Subject: General Makefile

---
 Makefile | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 Makefile

diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ec7d7c2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+# General Makefile for Debian packaging system.
+
+DESTDIR =
+
+all:
+	$(MAKE) -C src all
+	$(MAKE) -C lib all
+
+install:
+	$(MAKE) -C src install prefix=$(DESTDIR)/usr
+	$(MAKE) -C lib install prefix=$(DESTDIR)/usr
+
+clean:
+	$(MAKE) -C src clean
+	$(MAKE) -C lib clean
+
+.PHONY: clean install