mirror of
https://github.com/lucaspalomodevelop/Kaffee-Rechner.git
synced 2026-03-12 23:57:22 +00:00
9 lines
135 B
Makefile
9 lines
135 B
Makefile
all:
|
|
g++ -v mate.cpp mate.hpp -o mate
|
|
clean:
|
|
rm -v mate
|
|
install:
|
|
sudo cp -v mate /usr/bin/mate
|
|
uninstall:
|
|
sudo rm -v /usr/bin/mate
|