summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2010-08-19 13:24:37 +0000
committerIan C <ianc@noddybox.co.uk>2010-08-19 13:24:37 +0000
commitaf34bad8b39e95276b0d4e08ccdc26f89df2d2ec (patch)
tree427e06fe813cd847f96e12ff612d245b2da970c5 /makefile
parent19bbd5822593c7198dd54eb0f5d38fa1ed8d8fb7 (diff)
Updates to maths and added the use of a 3D vector.
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/makefile b/makefile
index 729eabe..8aa51f0 100644
--- a/makefile
+++ b/makefile
@@ -27,13 +27,15 @@ SOURCES = glgrav.cpp \
mass.cpp \
config.cpp \
particles.cpp \
- sparks.cpp
+ sparks.cpp \
+ vec3d.cpp
HEADERS = global.h \
config.h \
mass.h \
particles.h \
- sparks.h
+ sparks.h \
+ vec3d.h
OBJECTS = $(SOURCES:.cpp=.o)
@@ -73,7 +75,7 @@ $(TARGET): $(OBJECTS)
-include depend.mak
clean:
- -rm $(TARGET) $(TARGET).exe core *.stackdump *.o depend.mak
+ rm -f $(TARGET) $(TARGET).exe core *.stackdump *.o depend.mak
depend: $(DEPEND)
@echo Dependencies updated....