texec/Makefile

12 lines
158 B
Makefile
Raw Normal View History

2025-11-23 03:40:08 +01:00
all:
2025-11-23 03:42:19 +01:00
gcc -Wall -o texec texec.c -lX11 -lpng
2025-11-23 03:40:08 +01:00
clean:
rm -rf texec
install:
install -g 0 -o 0 -m 0655 ./texec /usr/bin/
uninstall:
rm -rf /usr/bin/texec