X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=course%2Fsemester2%2Fpprog%2Fassignment1%2FMakefile;fp=course%2Fsemester2%2Fpprog%2Fassignment1%2FMakefile;h=0000000000000000000000000000000000000000;hb=7a341db1fbf5db94b711135b2a79e852c6fb1bc4;hp=c1646243a958d61a9e7905bf28d34b94f46bc328;hpb=8050cacaa489292c82977b3d87971eaf9ca3c39b;p=matches%2Fhonours.git diff --git a/course/semester2/pprog/assignment1/Makefile b/course/semester2/pprog/assignment1/Makefile deleted file mode 100644 index c1646243..00000000 --- a/course/semester2/pprog/assignment1/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -#Makefile for nbody program - -CXX = gcc -LIBRARIES = -lm -lGL -lglut -lGLU -lpthread -FLAGS = --std=c99 -Wall -pedantic -g -PREPROCESSOR_FLAGS = -fopenmp -LINK_OBJ = main.o nbody.o graphics.o - -BIN = nbody - -$(BIN) : $(LINK_OBJ) - $(CXX) -o $(BIN) $(LINK_OBJ) $(LIBRARIES) - -%.o : %.c - $(CXX) $(FLAGS) $(PREPROCESSOR_FLAGS) -c $< - -clean : - $(RM) $(BIN) $(OBJ) $(LINK_OBJ) - -clean_full: #cleans up all backup files - $(RM) $(BIN) $(OBJ) $(LINK_OBJ) - $(RM) *.*~ - $(RM) *~