This commit is contained in:
21
ase/cmd/makefile.in
Normal file
21
ase/cmd/makefile.in
Normal file
@ -0,0 +1,21 @@
|
||||
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
|
Reference in New Issue
Block a user