aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 522ea68..0000000
--- a/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-.POSIX:
-
-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