tuit

toolbox pour des tui - retour accueil

git clone git://bebou.netlib.re/tuit

Log | Files | Refs |

commit 89fd92d6011ff43698cc5f89e7e5d032728e73ec
parent 36be2d51dd97358f771c7284a8fb0d78aee71695
Auteurice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Wed, 11 Jun 2025 15:09:50 +0200

Simplification makefile

Diffstat:
Mmakefile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/makefile b/makefile @@ -4,12 +4,12 @@ choose: choose.c termbox2.h .PHONY: clean clean: - $(RM) choose + rm choose .PHONY: install install: choose - install -D choose $(DESTDIR)$(PREFIX)/bin/choose + cp choose $(PREFIX)/bin/choose .PHONY: unistall -unistall: - $(RM) $(DESTDIR)$(PREFIX)/bin/choose +uninstall: + rm $(PREFIX)/bin/choose