little rook chess, sdl version

This commit is contained in:
olikraus 2016-07-16 12:25:21 +02:00
parent 239e744172
commit 3a60f30a39
3 changed files with 2382 additions and 1 deletions

View File

@ -0,0 +1,12 @@
CFLAGS = -g -Wall -I../../../csrc/. `sdl-config --cflags`
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) main.c
OBJ = $(SRC:.c=.o)
helloworld: $(OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) `sdl-config --libs` -o u8g2_sdl
clean:
-rm $(OBJ) u8g2_sdl

File diff suppressed because it is too large Load Diff

View File

@ -1,2 +1,2 @@
# without 'v' prefix
echo -n "2.1.0"
echo -n "2.1.1"