qse/ase/cmd/makefile.in

22 lines
318 B
Makefile
Raw Normal View History

2008-06-10 03:41:47 +00:00
BLDDIRS = awk
MODE = @BUILDMODE@
LIBTOOL_DEPS = @LIBTOOL_DEPS@
all: build
build:
@for i in $(BLDDIRS); \
do \
saved=`pwd`; cd "$$i" || exit 1; \
make || exit 1; \
cd "$$saved"; \
done
clean:
@for i in $(BLDDIRS); \
do \
saved=`pwd`; cd "$$i" || exit 1; \
make $@ || exit 1; \
cd "$$saved"; \
done