Updating the debug branch's Makefile.

This commit is contained in:
Murilo Soares Pereira 2010-04-20 14:30:24 -03:00
parent f7ee503596
commit 6545b996f2

View File

@ -4,6 +4,7 @@ SRC = ${SRC_DIR}/tty-solitaire.c
CFLAGS = -W -Wall -pedantic -ansi -std=c99
OUTPUT = bin/tty-solitaire
LIB_DIR = lib
DEBUG_DIR = debug
OBJECTS = ${LIB_DIR}/frame.o \
${LIB_DIR}/card.o \
${LIB_DIR}/stack.o \
@ -12,7 +13,10 @@ OBJECTS = ${LIB_DIR}/frame.o \
${LIB_DIR}/cursor.o \
${LIB_DIR}/keyboard.o \
${LIB_DIR}/display.o \
${LIB_DIR}/game.o
${LIB_DIR}/game.o \
${DEBUG_DIR}/card_debug.o \
${DEBUG_DIR}/stack_debug.o \
${DEBUG_DIR}/deck_debug.o
LDFLAGS = -lncursesw
tty-solitaire: ${OBJECTS}