Skip to content

Commit

Permalink
Use MAKE variable in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
vinc committed Nov 9, 2012
1 parent 432ae72 commit 1596dd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -15,9 +15,9 @@ $(EXECUTABLE): $(OBJECTS)
$(CXX) $(CXXFLAGS) -c -o $@ $<

test:
make -C ./test/unit
make -C ./test/unit test
$(MAKE) -C ./test/unit
$(MAKE) -C ./test/unit test

clean:
$(RM) $(OBJECTS) $(EXECUTABLE)
make -C ./test/unit clean
$(MAKE) -C ./test/unit clean

0 comments on commit 1596dd7

Please sign in to comment.