summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 716e7d1..5383661 100755
--- a/configure
+++ b/configure
@@ -52,26 +52,26 @@ cat > ./Makefile <<EOS
all: distro doc test test-api
distro:
- @cd build && make
+ @cd build && \$(MAKE)
doc:
- @cd build && make doc
+ @cd build && \$(MAKE) doc
test:
- @cd build && make test
+ @cd build && \$(MAKE) test
test-api:
- @cd build && make test-api
+ @cd build && \$(MAKE) test-api
clean:
- @cd build && make clean
+ @cd build && \$(MAKE) clean
distclean:
@rm -rf Makefile build
@rm -f yajl-*.tgz
install: distro doc
- @cd build && make install
+ @cd build && \$(MAKE) install
package: all
@echo \"compressing to $(basename build/yajl-*).tgz\"