Initial commit

This commit is contained in:
Johannes Findeisen 2025-11-23 03:40:08 +01:00
commit 1bf8ddf418
5 changed files with 198 additions and 0 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
all:
gcc -o texec texec.c -lX11 -lpng
clean:
rm -rf texec
install:
install -g 0 -o 0 -m 0655 ./texec /usr/bin/
uninstall:
rm -rf /usr/bin/texec