diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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.... |