texec/Makefile
2025-11-23 03:40:08 +01:00

12 lines
152 B
Makefile

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