Add player's pieces list management + change board def.
This commit is contained in:
8
Makefile
8
Makefile
@@ -5,7 +5,8 @@ SRCDIR=./src
|
||||
|
||||
SRC=$(wildcard $(SRCDIR)/*.c)
|
||||
INC=$(wildcard $(SRCDIR)/*.h)
|
||||
BIN=fen pool
|
||||
|
||||
BIN=fen pool piece
|
||||
|
||||
CFLAGS += -std=gnu99
|
||||
CFLAGS += -g
|
||||
@@ -31,3 +32,8 @@ pool: CFLAGS+=-DPOOLBIN
|
||||
pool: $(SRC)
|
||||
echo SRC=$(SRC)
|
||||
$(CC) $(CFLAGS) $? -o $@
|
||||
|
||||
piece: CFLAGS+=-DPIECEBIN
|
||||
piece: $(SRC)
|
||||
echo SRC=$(SRC)
|
||||
$(CC) $(CFLAGS) $? -o $@
|
||||
|
Reference in New Issue
Block a user