X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=blobdiff_plain;f=Makefile;h=1e33bb5663b4b6415ece08cc682c5420bcf30042;hp=aeaa326c5640ad849a203e0dfea03e41e9033500;hb=9971a6affb8e7135bd4cf146097042f22aa64689;hpb=d3465c5cd0e6e9b414e669e8c8aa464b03f2fd24 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