Commit afeda0e9 authored by Dominik Charousset's avatar Dominik Charousset

Merge pull request #27 from mavam/topic/build-harness

Make configure script POSIX compliant
parents 275ce111 f7ab6611
...@@ -193,7 +193,7 @@ else ...@@ -193,7 +193,7 @@ else
fi fi
echo "DIRS :=$workdirs\n" > $sourcedir/Makefile echo "DIRS :=$workdirs\n" > $sourcedir/Makefile
read -d '' makefile <<"EOT" makefile=$(cat<<'EOT'
all: all:
@for i in $(DIRS); do $(MAKE) -C $$i $@; done @for i in $(DIRS); do $(MAKE) -C $$i $@; done
...@@ -214,5 +214,6 @@ distclean: ...@@ -214,5 +214,6 @@ distclean:
.PHONY: all test install uninstall clean distclean .PHONY: all test install uninstall clean distclean
EOT EOT
)
echo "$makefile" >> $sourcedir/Makefile echo "$makefile" >> $sourcedir/Makefile
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment