mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-03-25 08:45:52 +00:00
16 lines
218 B
Makefile
16 lines
218 B
Makefile
default: c ruby
|
|
|
|
bootstrap:
|
|
cd ruby && bundle install --jobs 8
|
|
|
|
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 bootstrap
|