File: makefile

package info (click to toggle)
palbart 2.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 440 kB
  • sloc: ansic: 6,023; makefile: 41; sh: 14
file content (26 lines) | stat: -rw-r--r-- 665 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
Description: Makefile for building and installing palbart
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: git/Makefile
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ git/Makefile	2017-07-09 03:34:23.651616641 +0200
@@ -0,0 +1,18 @@
+# Makefile for palbart written by vlm@debian.org on Jan 16 2000 for Debian
+# This makefile is released under the GPL
+#
+
+DESTDIR 	=
+BIN		= $(DESTDIR)/usr/bin
+CFLAGS		+= -Wall -Wstrict-prototypes
+
+
+palbart:	palbart.o
+
+install:	palbart
+		install ./palbart "$(BIN)"
+
+clean:
+		rm -f palbart palbart.o
+
+.PHONY: clean