1
## This is not based at all on my other makefile formats...
2
include $(DISLIBDIR)/common/common.mk
3
STDLINK=mkdir -p $(BINDIR); $(CXX) $(LDFLAGS) $(LIBS) -o $@ $^
5
# This rule builds dependency information about a target, it forces rebuild
6
# of this dependency information when anything changes
8
set -e; $(CXX) -MM $(CPPFLAGS) $< \
9
| sed 's/\($(notdir $*)\).o[ :]/$(subst /,\/,$*).o $(subst /,\/,$@) : /g' > $@