aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-12-30 20:11:06 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-12-30 20:11:06 +0100
commit1de8c1d2f42d6f6e4ef0c6996030c846266c194d (patch)
treef2c0851683a77e4a0e79a0cce3f9ef3406fbd0d3 /Makefile
parentd70d3214b2b26f6d8e1bd6771ffe5cdca2c99cf3 (diff)
Switch to cbs for building
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