summaryrefslogtreecommitdiff
path: root/core/slogin/Makefile
diff options
context:
space:
mode:
authorauric <104602845+ihateamongus@users.noreply.github.com>2025-09-08 23:25:54 -0500
committerGitHub <noreply@github.com>2025-09-08 23:25:54 -0500
commit81729ee885471cb2a2a532d47f3986e5294f0102 (patch)
tree28bbed9646b7765bb6466b5a430c72cb8153ce7c /core/slogin/Makefile
parentca4689a753032f67ed2d688e11d4137eb90ebbea (diff)
Delete core/slogin directory
Force remake
Diffstat (limited to 'core/slogin/Makefile')
-rw-r--r--core/slogin/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/core/slogin/Makefile b/core/slogin/Makefile
deleted file mode 100644
index 4d8c919..0000000
--- a/core/slogin/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-CC = cc
-CFLAGS = -std=c99 -Wall -Wextra -pedantic -Os
-LDFLAGS = -lX11 -lcrypt
-PREFIX ?= /usr/local
-
-all: slogin
-
-slogin: slogin.c
- $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
-
-clean:
- rm -f slogin
-
-install: slogin
- mkdir -p $(DESTDIR)$(PREFIX)/bin
- cp -f slogin $(DESTDIR)$(PREFIX)/bin