blob: 34e31a9a303eaee313e77f9d636e732a786c4cac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Convenience stub makefile to call the real Makefile.
@SET_MAKE@
OBJEXT = @OBJEXT@
# Explicit so that it's the default rule.
all:
cd .. && $(MAKE) removeoverlap/all
clean %.a %.$(OBJEXT):
cd .. && $(MAKE) removeoverlap/$@
.PHONY: all clean
.SUFFIXES:
.SUFFIXES: .a .$(OBJEXT)
|