aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorczjstmax <jstmaxlol@disroot.org>2026-05-14 16:08:04 +0200
committerczjstmax <jstmaxlol@disroot.org>2026-05-14 16:08:04 +0200
commit511f30b96d06041f528ec005e4d3edffc4047608 (patch)
treea93f707558255636e336cdac8dba0023f64a136a /Makefile
parentd5be1b2375c4adcf4840ac379fe88aa2fae45771 (diff)
update 1.2.5
Signed-off-by: czjstmax <jstmaxlol@disroot.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 4d7f511..0000000
--- a/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-CC = gcc
-OPTS = -Wall -Wextra -pedantic -std=c99
-FIN = rf.c
-FOUT = rf
-PREFIX ?= /usr
-DESTDIR ?=
-
-.PHONY: all run install clean
-
-all:
- $(CC) $(OPTS) $(FIN) -o $(FOUT)
-
-run: all
- ./$(FOUT)
-
-install: all
- sudo install -Dm755 $(FOUT) $(DESTDIR)$(PREFIX)/bin/$(FOUT)
- $(MAKE) clean
-
-clean:
- rm -v $(FOUT)
-