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