Skip to content

Commit

Permalink
Use $(MAKE) not some non existant variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed May 9, 2009
1 parent c9bdb88 commit 3096ac8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/Makefile.rb
Expand Up @@ -60,16 +60,16 @@ def step2( path )
.PHONY: __src
__src: src/Makefile
cd src && #{$make}
cd src && $(MAKE)
.PHONY: __fingerprint
__fingerprint: src/fingerprint/Makefile __src
cd src/fingerprint && #{$make}
cd src/fingerprint && $(MAKE)
.PHONY: __tests
__tests: tests/Makefile __src
cd tests && #{$make}
cd tests && $(MAKE)
.PHONY: __demos
__demos: demos/Makefile __src
cd demos && #{$make}
cd demos && $(MAKE)
EOS

Expand Down

0 comments on commit 3096ac8

Please sign in to comment.