~eda-qa/dhlib/main

« back to all changes in this revision

Viewing changes to restricted/wordlib/makefile

  • Committer: edA-qa mort-ora-y
  • Date: 2010-04-03 10:34:57 UTC
  • Revision ID: eda-qa@disemia.com-20100403103457-ro7xslj1ct0wpnm1
adding common button base

Show diffs side-by-side

added added

removed removed

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