From beefac49ce6cefc4b954479fcb94c3411af54420 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Thu, 20 Oct 2011 11:11:25 +0800 Subject: [PATCH] --- Makefile | 3 ++- helper.h | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aeaa326..1e33bb5 100644 --- a/Makefile +++ b/Makefile @@ -23,13 +23,14 @@ LIBS += -lglut -lGLU -lGL CFLAGS += -ggdb -Wall -std=c99 FILES=scene.c scene.h bitmap.c bitmap.h globals.c globals.h helper.c helper.h types.h +EXENAME=scene .PHONY: all all: scene commit scene: $(FILES) - gcc $(CFLAGS) -o $(FILES) $(LIBS) + gcc $(CFLAGS) -o $(EXENAME) $(FILES) $(LIBS) commit: $(FILES) git commit -a --allow-empty-message --message="" --untracked-files=no; true diff --git a/helper.h b/helper.h index 9dccd18..21eceea 100644 --- a/helper.h +++ b/helper.h @@ -4,6 +4,8 @@ * @author Ashley Tyndall (20915779), Jenna de la Harpe (20367932) */ +#include "types.h" + #ifndef HELPER_H #define HELPER_H -- 2.20.1