Initial commit - Copied from SXMO
This commit is contained in:
commit
9186be2ac2
4 changed files with 572 additions and 0 deletions
11
Makefile
Normal file
11
Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
PREFIX = /usr/local
|
||||
|
||||
.PHONY: install
|
||||
|
||||
screenlock: screenlock.c
|
||||
gcc -o screenlock screenlock.c -lX11
|
||||
|
||||
install: screenlock
|
||||
mkdir -p $(PREFIX)/bin
|
||||
cp -f screenlock $(PREFIX)/bin/screenlock
|
||||
chmod 755 $(PREFIX)/bin/screenlock
|
Loading…
Add table
Add a link
Reference in a new issue