summaryrefslogtreecommitdiffstats
path: root/system/set_rlimits/Makefile.patch
blob: 398356aa3909da965a368f380664a2f38752cf5b (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
diff -Nur set_rlimits-1.3.0.orig/Makefile set_rlimits-1.3.0/Makefile
--- set_rlimits-1.3.0.orig/Makefile	2008-05-15 05:44:21.000000000 -0500
+++ set_rlimits-1.3.0/Makefile	2009-07-14 01:43:10.829342025 -0500
@@ -4,6 +4,10 @@
 # C compiler to use
 CC=gcc
 
+# CFLAGS to use
+CFLAGS = -Wall -g
+EXTRA_CFLAGS =
+
 # Installation locations.  If SYSCONFDIR is changed, the CONFIG_FILE define
 # in set_rtlimits.c will need changing to match.
 PREFIX=/usr/local
@@ -12,19 +16,19 @@
 all:	set_rlimits
 
 set_rlimits:	set_rlimits.c
-	$(CC) -Wall -g -o set_rlimits set_rlimits.c
+	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -o set_rlimits set_rlimits.c
 
 install:	set_rlimits
-	test -d $(PREFIX)/bin || mkdir -p $(PREFIX)/bin
-	test -d $(PREFIX)/man/man8 || mkdir -p $(PREFIX)/man/man8
-	test -d $(SYSCONFDIR) || mkdir -p $(SYSCONFDIR)
-	cp -p set_rlimits $(PREFIX)/bin/
-	chown 0.0 $(PREFIX)/bin/set_rlimits
-	chmod u+s $(PREFIX)/bin/set_rlimits
-	test -e $(SYSCONFDIR)/set_rlimits.conf || cp set_rlimits.conf $(SYSCONFDIR)/
-	chown 0.0 $(SYSCONFDIR)/set_rlimits.conf
-	cp -p set_rlimits.8 $(PREFIX)/man/man8/
-	chown 0.0 $(PREFIX)/man/man8/set_rlimits.8
+	test -d $(DESTDIR)/$(PREFIX)/bin || mkdir -p $(DESTDIR)/$(PREFIX)/bin
+	test -d $(DESTDIR)/$(PREFIX)/man/man8 || mkdir -p $(DESTDIR)/$(PREFIX)/man/man8
+	test -d $(DESTDIR)/$(SYSCONFDIR) || mkdir -p $(DESTDIR)/$(SYSCONFDIR)
+	cp -p set_rlimits $(DESTDIR)/$(PREFIX)/bin/
+	chown 0.0 $(DESTDIR)/$(PREFIX)/bin/set_rlimits
+	chmod u+s $(DESTDIR)/$(PREFIX)/bin/set_rlimits
+	test -e $(DESTDIR)/$(SYSCONFDIR)/set_rlimits.conf || cp set_rlimits.conf $(DESTDIR)/$(SYSCONFDIR)/
+	chown 0.0 $(DESTDIR)/$(SYSCONFDIR)/set_rlimits.conf
+	cp -p set_rlimits.8 $(DESTDIR)/$(PREFIX)/man/man8/
+	chown 0.0 $(DESTDIR)/$(PREFIX)/man/man8/set_rlimits.8
 
 .PHONY:	clean tidy