From e7763f86c28b397581260f87fa94bf7c4e0297e4 Mon Sep 17 00:00:00 2001 From: Murilo Soares Pereira Date: Sat, 3 Apr 2010 01:27:52 -0300 Subject: [PATCH] Adding the display object to the dependencies. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index a2904a2..c35e1c4 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ SRC = ${SRC_DIR}/tty-solitaire.c CFLAGS = -W -Wall -pedantic -ansi -std=c99 OUTPUT = bin/tty-solitaire LIB_DIR = lib -OBJECTS = ${LIB_DIR}/card.o ${LIB_DIR}/frame.o +OBJECTS = ${LIB_DIR}/frame.o ${LIB_DIR}/card.o ${LIB_DIR}/display.o LDFLAGS = -lncurses tty-solitaire: ${OBJECTS}