Renamed project to Xtimer and added install and uninstall routines to Makefile.

This commit is contained in:
Johannes Findeisen 2025-01-13 06:24:17 +01:00
commit b6528efc13
3 changed files with 9 additions and 3 deletions

2
.gitignore vendored
View file

@ -1 +1 @@
xtimer
Xtimer

View file

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

View file