mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-03-25 08:45:52 +00:00
Add a way to run tests in all languages
This commit is contained in:
parent
6cf858fbfc
commit
91bda119f9
1 changed files with 15 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
default: all
|
||||
|
||||
all: c ruby
|
||||
|
||||
c:
|
||||
cd c && make test
|
||||
|
||||
ruby:
|
||||
cd ruby && bundle exec rake
|
||||
|
||||
clean:
|
||||
cd c && make clean
|
||||
cd ruby && bundle exec rake clean
|
||||
|
||||
.PHONY: c ruby clean
|
||||
Loading…
Reference in a new issue