From a37f7884e157d7340bf388e60de64e213192e5cb Mon Sep 17 00:00:00 2001 From: De Rais Date: Thu, 5 Sep 2013 02:56:05 -0400 Subject: [PATCH] . --- Makefile | 6 +++--- engine-sins.c => engine-sinners.c | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename engine-sins.c => engine-sinners.c (100%) diff --git a/Makefile b/Makefile index 7f8736b..f13623c 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ LD=gcc CFLAGS=-g -Wall -Werror -pedantic -ansi -O2 $(shell pkg-config --cflags ncurses) LDFLAGS=$(shell pkg-config --libs ncurses) -lm -PROGS=game-of-sins game-of-conway +PROGS=game-of-sinners game-of-conway default: all @@ -17,7 +17,7 @@ all: $(PROGS) game-of-conway: driver.o engine-conway.o $(LD) $(LDFLAGS) -o $@ $^ -game-of-sins: driver.o engine-sins.o +game-of-sinners: driver.o engine-sinners.o $(LD) $(LDFLAGS) -o $@ $^ driver.o: driver.c engine.h @@ -26,5 +26,5 @@ driver.o: driver.c engine.h engine-conway.o: engine-conway.c engine.h $(CC) $(CFLAGS) -o $@ -c $< -engine-sins.o: engine-sins.c engine.h +engine-sinners.o: engine-sinners.c engine.h $(CC) $(CFLAGS) -o $@ -c $< diff --git a/engine-sins.c b/engine-sinners.c similarity index 100% rename from engine-sins.c rename to engine-sinners.c -- 2.11.4.GIT