Rename binary.
This commit is contained in:
parent
74a79ac023
commit
cb2376a82f
4 changed files with 15 additions and 10 deletions
|
@ -1,3 +1,8 @@
|
|||
0.6.2_5 (2020-12-30)
|
||||
====================
|
||||
|
||||
* Rename binary.
|
||||
|
||||
0.6.2_4 (2020-12-25)
|
||||
====================
|
||||
|
||||
|
|
18
src/Makefile
18
src/Makefile
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
src = main.c collision.c game.c input.c renderer.c
|
||||
src = snake-sdl.c collision.c game.c input.c renderer.c
|
||||
inc = extern.h game.h input.h renderer.h screen.h version.h
|
||||
|
||||
.ifdef GPIO
|
||||
|
@ -31,20 +31,20 @@ CFLAGS += -I/usr/local/include
|
|||
LDFLAGS += -L/usr/local/lib
|
||||
|
||||
all: ${obj} ${inc}
|
||||
${CC} ${LDFLAGS} -o snake ${obj}
|
||||
${CC} ${LDFLAGS} -o snake-sdl ${obj}
|
||||
|
||||
clean:
|
||||
rm -f snake ${obj}
|
||||
rm -f snake-sdl ${obj}
|
||||
|
||||
install:
|
||||
install -d ${PREFIX}/bin
|
||||
install -d ${PREFIX}/share/snake
|
||||
install snake ${PREFIX}/bin
|
||||
install -m644 ../contrib/font.ttf ${PREFIX}/share/snake
|
||||
install -m644 ../contrib/music.flac ${PREFIX}/share/snake
|
||||
install -d ${PREFIX}/share/snake-sdl
|
||||
install snake-sdl ${PREFIX}/bin
|
||||
install -m644 ../contrib/font.ttf ${PREFIX}/share/snake-sdl
|
||||
install -m644 ../contrib/music.flac ${PREFIX}/share/snake-sdl
|
||||
|
||||
deinstall:
|
||||
rm -f ${PREFIX}/bin/snake
|
||||
rm -rf ${PREFIX}/share/snake
|
||||
rm -f ${PREFIX}/bin/snake-sdl
|
||||
rm -rf ${PREFIX}/share/snake-sdl
|
||||
|
||||
.PHONY: all clean install deinstall
|
||||
|
|
|
@ -7,4 +7,4 @@
|
|||
#define VERSION "0"
|
||||
#define RELEASE "6"
|
||||
#define PATCH "2"
|
||||
#define EXTRA "_4"
|
||||
#define EXTRA "_5"
|
||||
|
|
Loading…
Reference in a new issue