mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
Fixed bug in gcc invocation; added stdlib tests
This commit is contained in:
parent
faca5c6e0e
commit
369f80f7e8
11 changed files with 515 additions and 74 deletions
7
Makefile
7
Makefile
|
|
@ -5,14 +5,19 @@ SHELL := /bin/bash
|
|||
all:
|
||||
pushd src && make && popd
|
||||
pushd runtime && make && popd
|
||||
pushd stdlib && make && popd
|
||||
|
||||
install: ;
|
||||
|
||||
regression:
|
||||
pushd regression && ./test.sh && popd
|
||||
pushd regression && make clean check && popd
|
||||
pushd regression/x86only && make clean check && popd
|
||||
pushd stdlib/regression && make clean check && popd
|
||||
|
||||
clean:
|
||||
pushd src && make clean && popd
|
||||
pushd runtime && make clean && popd
|
||||
pushd stdlib && make clean && popd
|
||||
pushd regression && make clean && popd
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue