Added the keyboard object as a dependency.
This commit is contained in:
parent
e65e4e2875
commit
82d9ee9cb4
13
Makefile
13
Makefile
@ -4,12 +4,13 @@ SRC = ${SRC_DIR}/tty-solitaire.c
|
|||||||
CFLAGS = -W -Wall -pedantic -ansi -std=c99
|
CFLAGS = -W -Wall -pedantic -ansi -std=c99
|
||||||
OUTPUT = bin/tty-solitaire
|
OUTPUT = bin/tty-solitaire
|
||||||
LIB_DIR = lib
|
LIB_DIR = lib
|
||||||
OBJECTS = ${LIB_DIR}/frame.o \
|
OBJECTS = ${LIB_DIR}/frame.o \
|
||||||
${LIB_DIR}/card.o \
|
${LIB_DIR}/card.o \
|
||||||
${LIB_DIR}/stack.o \
|
${LIB_DIR}/stack.o \
|
||||||
${LIB_DIR}/deck.o \
|
${LIB_DIR}/deck.o \
|
||||||
${LIB_DIR}/util.o \
|
${LIB_DIR}/util.o \
|
||||||
${LIB_DIR}/display.o \
|
${LIB_DIR}/keyboard.o \
|
||||||
|
${LIB_DIR}/display.o \
|
||||||
${LIB_DIR}/game.o
|
${LIB_DIR}/game.o
|
||||||
LDFLAGS = -lncurses
|
LDFLAGS = -lncurses
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user