You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.2 KiB
54 lines
1.2 KiB
# slock - simple screen locker |
|
# See LICENSE file for copyright and license details. |
|
|
|
include config.mk |
|
|
|
SRC = slock.c |
|
OBJ = ${SRC:.c=.o} |
|
|
|
all: options slock |
|
|
|
options: |
|
@echo slock build options: |
|
@echo "CFLAGS = ${CFLAGS}" |
|
@echo "LDFLAGS = ${LDFLAGS}" |
|
@echo "CC = ${CC}" |
|
|
|
.c.o: |
|
@echo CC $< |
|
@${CC} -c ${CFLAGS} $< |
|
|
|
${OBJ}: config.h config.mk |
|
|
|
config.h: |
|
@echo creating $@ from config.def.h |
|
@cp config.def.h $@ |
|
|
|
slock: ${OBJ} |
|
@echo CC -o $@ |
|
@${CC} -o $@ ${OBJ} ${LDFLAGS} |
|
|
|
clean: |
|
@echo cleaning |
|
@rm -f slock ${OBJ} slock-${VERSION}.tar.gz |
|
|
|
dist: clean |
|
@echo creating dist tarball |
|
@mkdir -p slock-${VERSION} |
|
@cp -R LICENSE Makefile README config.def.h config.mk ${SRC} slock-${VERSION} |
|
@tar -cf slock-${VERSION}.tar slock-${VERSION} |
|
@gzip slock-${VERSION}.tar |
|
@rm -rf slock-${VERSION} |
|
|
|
install: all |
|
@echo installing executable file to ${DESTDIR}${PREFIX}/bin |
|
@mkdir -p ${DESTDIR}${PREFIX}/bin |
|
@cp -f slock ${DESTDIR}${PREFIX}/bin |
|
@chmod 755 ${DESTDIR}${PREFIX}/bin/slock |
|
@chmod u+s ${DESTDIR}${PREFIX}/bin/slock |
|
|
|
uninstall: |
|
@echo removing executable file from ${DESTDIR}${PREFIX}/bin |
|
@rm -f ${DESTDIR}${PREFIX}/bin/slock |
|
|
|
.PHONY: all options clean dist install uninstall
|
|
|