Added new object dependencies and titleized the makefile.
This commit is contained in:
20
Makefile
Normal file
20
Makefile
Normal file
@@ -0,0 +1,20 @@
|
||||
CC = gcc
|
||||
SRC_DIR = src
|
||||
SRC = ${SRC_DIR}/tty-solitaire.c
|
||||
CFLAGS = -W -Wall -pedantic -ansi -std=c99
|
||||
OUTPUT = bin/tty-solitaire
|
||||
LIB_DIR = lib
|
||||
OBJECTS = ${LIB_DIR}/frame.o \
|
||||
${LIB_DIR}/card.o \
|
||||
${LIB_DIR}/stack.o \
|
||||
${LIB_DIR}/deck.o \
|
||||
${LIB_DIR}/util.o \
|
||||
${LIB_DIR}/display.o \
|
||||
${LIB_DIR}/game.o
|
||||
LDFLAGS = -lncurses
|
||||
|
||||
tty-solitaire: ${OBJECTS}
|
||||
${CC} ${CFLAGS} ${LDFLAGS} ${SRC} -o ${OUTPUT} ${OBJECTS}
|
||||
|
||||
clean:
|
||||
rm -rf ${LIB_DIR}/*.o ${OUTPUT}
|
||||
Reference in New Issue
Block a user