summaryrefslogtreecommitdiff
path: root/slock/Makefile
diff options
context:
space:
mode:
authorauric <104602845+ihateamongus@users.noreply.github.com>2025-09-08 21:19:14 -0500
committerauric <104602845+ihateamongus@users.noreply.github.com>2025-09-08 21:19:14 -0500
commite61da07522a060da98fa3a56db3d0360469b26cf (patch)
treec72d276bffa4dafe22ae0e4f694acfadb40b8ca1 /slock/Makefile
parentd11aec86841f77edd6eba3e07aa1e7e591e9da2a (diff)
organize repository layout
Diffstat (limited to 'slock/Makefile')
-rw-r--r--slock/Makefile46
1 files changed, 0 insertions, 46 deletions
diff --git a/slock/Makefile b/slock/Makefile
deleted file mode 100644
index 6d74b21..0000000
--- a/slock/Makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-# slock - simple screen locker
-# See LICENSE file for copyright and license details.
-
-include config.mk
-
-SRC = slock.c ${COMPATSRC}
-OBJ = ${SRC:.c=.o}
-
-all: slock
-
-.c.o:
- ${CC} -c ${CFLAGS} $<
-
-${OBJ}: config.h config.mk arg.h util.h
-
-config.h:
- cp config.def.h $@
-
-slock: ${OBJ}
- ${CC} -o $@ ${OBJ} ${LDFLAGS}
-
-clean:
- rm -f slock ${OBJ} slock-${VERSION}.tar.gz
-
-dist: clean
- mkdir -p slock-${VERSION}
- cp -R LICENSE Makefile README slock.1 config.mk \
- ${SRC} config.def.h arg.h util.h slock-${VERSION}
- tar -cf slock-${VERSION}.tar slock-${VERSION}
- gzip slock-${VERSION}.tar
- rm -rf slock-${VERSION}
-
-install: all
- mkdir -p ${DESTDIR}${PREFIX}/bin
- cp -f slock ${DESTDIR}${PREFIX}/bin
- chmod 755 ${DESTDIR}${PREFIX}/bin/slock
- chmod u+s ${DESTDIR}${PREFIX}/bin/slock
- mkdir -p ${DESTDIR}${MANPREFIX}/man1
- sed "s/VERSION/${VERSION}/g" <slock.1 >${DESTDIR}${MANPREFIX}/man1/slock.1
- chmod 644 ${DESTDIR}${MANPREFIX}/man1/slock.1
-
-uninstall:
- rm -f ${DESTDIR}${PREFIX}/bin/slock
- rm -f ${DESTDIR}${MANPREFIX}/man1/slock.1
-
-.PHONY: all clean dist install uninstall