Added the stack object to the dependencies.

This commit is contained in:
Murilo Soares Pereira 2010-04-03 21:55:57 -03:00
parent 4bb10a54cc
commit 1c65ae3672

View File

@ -4,7 +4,10 @@ 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 ${LIB_DIR}/card.o ${LIB_DIR}/display.o OBJECTS = ${LIB_DIR}/frame.o \
${LIB_DIR}/card.o \
${LIB_DIR}/stack.o \
${LIB_DIR}/display.o
LDFLAGS = -lncurses LDFLAGS = -lncurses
tty-solitaire: ${OBJECTS} tty-solitaire: ${OBJECTS}