From: Ash Tyndall Date: Thu, 20 Oct 2011 03:11:25 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=commitdiff_plain;h=beefac49ce6cefc4b954479fcb94c3411af54420 --- 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