Commit b5626262 authored by hybrid's avatar hybrid

Added tags target and avoid recreation of .d files on clean.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1786 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 1ec87869
...@@ -129,11 +129,16 @@ install_osx: ...@@ -129,11 +129,16 @@ install_osx:
cd $(INSTALL_DIR) && ln -s libIrrlicht.dylib.$(VERSION) $(SHARED_LIB) cd $(INSTALL_DIR) && ln -s libIrrlicht.dylib.$(VERSION) $(SHARED_LIB)
ldconfig -n $(INSTALL_DIR) ldconfig -n $(INSTALL_DIR)
TAGS:
ctags *.cpp ../../include/*.h *.h
# Create dependency files for automatic recompilation # Create dependency files for automatic recompilation
%.d:%.cpp %.d:%.cpp
$(CXX) $(CPPFLAGS) -MM -MF $@ $< $(CXX) $(CPPFLAGS) -MM -MF $@ $<
ifneq ($(MAKECMDGOALS),clean)
-include $(LINKOBJ:.o=.d) -include $(LINKOBJ:.o=.d)
endif
help: help:
@echo "Available targets for Irrlicht" @echo "Available targets for Irrlicht"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment