moved items that a normal make doesn't create to distclean
authorPatrik Gornicz <Gornicz.P@gmail.com>
Thu, 17 Jul 2008 03:55:53 +0000 (23:55 -0400)
committerPatrik Gornicz <Gornicz.P@gmail.com>
Thu, 17 Jul 2008 03:55:53 +0000 (23:55 -0400)
src/Makefile

index 77339f0..885bc9e 100644 (file)
@@ -50,10 +50,6 @@ ${TARGET}: ${OBJS}
        ${CXX} ${CXXFLAGS} -o ${TARGET} $^ ${LIBS}
        @echo ""
 
-.PHONY: depend
-depend: ${SRCS}
-       ${CXX} -MM $^ > ${DEPENDS}
-
 # how to make a depend file from a source file
 %.d: %.cpp
        @echo "DEP: $@"
@@ -64,11 +60,11 @@ depend: ${SRCS}
 
 .PHONY: clean
 clean:
-       rm -f ${OBJS} ${TARGET} *~ prof gmon.out
+       rm -f ${OBJS} ${TARGET}
 
 .PHONY: distclean
 distclean: clean
-       rm -f tags ${DEPENDS}
+       rm -f ${DEPENDS} tags prof gmon.out
 
 tags: ${SRCS}
        ctags $^