Rework of web framework #266

Merged
Jef Roosens merged 8 commits from Chewing_Bever/vieter:web-rework into dev 2022-09-04 22:29:44 +02:00
2 changed files with 2 additions and 9 deletions
Showing only changes of commit 9dfdfbf724 - Show all commits

View file

@ -83,13 +83,6 @@ fmt:
test: test:
$(V) test $(SRC_DIR) $(V) test $(SRC_DIR)
# Build & patch the V compiler
.PHONY: v
v: v/v
v/v:
git clone --single-branch https://git.rustybever.be/vieter-v/v v
make -C v
.PHONY: clean .PHONY: clean
clean: clean:
rm -rf 'data' 'vieter' 'dvieter' 'pvieter' 'vieter.c' 'pkg' 'src/vieter' *.pkg.tar.zst 'suvieter' 'afvieter' '$(SRC_DIR)/_docs' 'docs/public' rm -rf 'data' 'vieter' 'dvieter' 'pvieter' 'vieter.c' 'pkg' 'src/vieter' *.pkg.tar.zst 'suvieter' 'afvieter' '$(SRC_DIR)/_docs' 'docs/public'

View file

@ -37,7 +37,6 @@ that.
Besides a V installer, Vieter also requires the following libraries to work: Besides a V installer, Vieter also requires the following libraries to work:
* gc
* libarchive * libarchive
* openssl * openssl
* sqlite3 * sqlite3
@ -49,7 +48,8 @@ update`.
### Compiler ### Compiler
I used to maintain a mirror that tracked the latest master, but nowadays, I I used to maintain a mirror that tracked the latest master, but nowadays, I
solely target V 0.3 as a compiler. maintain a Docker image containing the specific compiler version that Vieter
builds with. Currently, this is V 0.3.
## Contributing ## Contributing