source: cpp/common/Makefile-maintain @ 363

Last change on this file since 363 was 363, checked in by Maciej Komosinski, 9 years ago

Makefile-maintain is now in common

  • Property svn:eol-style set to native
File size: 691 bytes
RevLine 
[252]1ifeq "$(SHELL)" "/bin/sh"
2        # because of bash-specific shell expansion used in 'clean':
3        SHELL=/bin/bash
4endif
[109]5
6clean:
7ifeq "$(ALL_DIRS)$(ALL_DIRS)" ""
8        @echo "Makefile-maintain clean: ALL_DIRS and/or EXTRA_CLEAN_FILES must be defined"
9else
[355]10        @echo -e -n $(foreach DIR,$(shell echo $(ALL_DIRS)), \
11        $(if $(wildcard $(DIR)),,Missing directory:$(DIR)\\n) \
12        )
[109]13        rm -f $(EXTRA_CLEAN_FILES) $(ALL_DIRS)/*.{a,o,d}
14endif
15
16ALL_DEPS=$(ALL_OBJS:.o=.d)
17
18ifneq "$(MAKECMDGOALS)" "clean"
19-include $(ALL_DEPS)
20endif
21
22depend: $(ALL_DEPS)
23
24%.d: %.cpp
25        @set -e; rm -f $@; $(CXX) $(CXXFLAGS) -MM -MT $(<:.cpp=.o) $< > $@
26#       g++ $(CXXFLAGS) -MM -MT $(<:.o=.d) $< | sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' > $@
Note: See TracBrowser for help on using the repository browser.