summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4db0245..ef6a9b5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,14 @@
1CFLAGS+=-Wall -Wextra -pedantic -Os 1CFLAGS+=-Wall -Wextra -pedantic -Os
2LDFLAGS+=-s
3PREFIX?=/usr/local
2 4
3jaildaemon: jaildaemon.c 5jaildaemon: jaildaemon.c
4 $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS) 6 $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
5 7
8install: jaildaemon
9 install -o 0 -g 0 -m 0755 jaildaemon $(PREFIX)/bin
10 install -o 0 -g 0 -m 0755 rc.d-jaildaemon $(PREFIX)/etc/rc.d/jaildaemon
11
6.PHONY: clean test 12.PHONY: clean test
7clean: 13clean:
8 rm -f jaildaemon 14 rm -f jaildaemon