texec/Makefile
2025-11-23 03:42:19 +01:00

12 lines
158 B
Makefile

all:
gcc -Wall -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