aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 344fb30..522ea68 100644
--- a/Makefile
+++ b/Makefile
@@ -5,11 +5,19 @@ WARNINGS = -Wall -Wextra -Werror -Wpedantic
CC = cc
CFLAGS = $(WARNINGS) -pipe -O3 -march=native -mtune=native
+PREFIX = /usr/local
+DPREFIX = $(DESTDIR)$(PREFIX)
+
all: grab
grab: grab.c
debug:
$(CC) $(WARNINGS) -DGRAB_DEBUG -g -ggdb3 -o grab grab.c
+install:
+ mkdir -p $(DPREFIX)/bin $(DPREFIX)/share/man/man1
+ cp grab $(DPREFIX)/bin
+ cp grab.1 $(DPREFIX)/share/man/man1
+
clean:
rm -f grab