le jeu des motos dans tron - retour accueil
git clone git://bebou.netlib.re/tron
Log | Files | Refs | README |
makefile (245B)
1 PREFIX = /usr/local 2 3 tron: tron.c termbox2.h 4 cc -Wall -Wextra -Wpedantic -std=c99 -Os tron.c -o tron 5 6 .PHONY: clean 7 clean: 8 rm tron 9 10 .PHONY: install 11 install: tron 12 cp tron $(PREFIX)/bin/tron 13 14 .PHONY: uninstall 15 uninstall: 16 rm $(PREFIX)/bin/tron