Renamed program to Xtea.

This commit is contained in:
Johannes Findeisen 2025-01-13 07:09:41 +01:00
commit 4294333a88
3 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View file

@ -1 +1 @@
Xtimer
Xtea

View file

@ -1,12 +1,12 @@
all:
$(CC) -Wall -o Xtimer Xtimer.c -lX11 -lXi
$(CC) -Wall -o Xtea Xtea.c -lX11 -lXi
clean:
rm -f Xtimer
rm -f ./Xtea
install:
install -g 0 -o 0 -m 0655 ./Xtimer /usr/bin/
install -g 0 -o 0 -m 0655 ./Xtea /usr/bin/
uninstall:
rm -rf /usr/bin/Xtimer
rm -rf /usr/bin/Xtea

View file