136 lines
3.2 KiB
Makefile
136 lines
3.2 KiB
Makefile
# FIXME: in-code docs needed
|
|
|
|
# FIXME: Windows doesn't support makefiles natively -> if you have a better method then please MR it or make an issue
|
|
|
|
## Syntax capture ##
|
|
|
|
all:
|
|
@ printf '%s\n' "Unknown option '$1' parsed in target all"
|
|
@ exit 2
|
|
|
|
## BUILD ##
|
|
# All build targets are expected in 'build/build-LANG' where 'LANG' is the unique identifier of the language used
|
|
# FIXME: Replace 'exit 1' with helpful messages
|
|
|
|
# Fetch files from third parties
|
|
vendor:
|
|
@ [ ! -d vendor ] && mkdir vendor
|
|
@ [ ! -d vendor/rustlang ] && mkdir vendor/rustlang
|
|
@ git clone https://github.com/clap-rs/clap.git vendor/rustlang/clap-rs
|
|
@ for file in vendor/rustlang/clap-rs/benches/*; do cp "$$file" benches/rustlang/claprs-$${file##vendor/rustlang/clap-rs/benches/} || exit 1; done
|
|
|
|
build:
|
|
@ printf 'FIXME: %s\n' "Build all targets if executed"
|
|
@ exit 1
|
|
|
|
# FIXME: Build in '$repodir/build/build-rustlang' instead of '$repodir/target' for multilang support
|
|
build-rustlang:
|
|
@ cargo build --verbose
|
|
|
|
# FIXME: Add logic
|
|
build-clang-c:
|
|
@ exit 1
|
|
|
|
build-gcc-c:
|
|
@ # Make a build directory
|
|
@ [ ! -d build ] && { mkdir build || exit 1 ;}
|
|
@ [ ! -d build/target-gc ] && { mkdir build/build-gc || exit 1 ;}
|
|
|
|
@ # Compilation
|
|
@ ## gc is not available on github -> Using GCC
|
|
@
|
|
@ [ ! -f build/build-gc/gc-zernit ] && { gcc src/bin/main.c -o build/build-gc/gc-zernit || exit 1 ;}
|
|
@ printf '%s\n' "Compilation of target for gc finished"
|
|
|
|
# FIXME: Replace 'exit 1' with helpful messages
|
|
build-gcc-ccp:
|
|
@ # Make a build directory
|
|
@ [ ! -d build ] && { mkdir build || exit 1 ;}
|
|
@ [ ! -d build/target-gcc ] && { mkdir build/build-gcc || exit 1 ;}
|
|
|
|
@ # Compilation
|
|
@ [ ! -f build/build-gcc ] && { gcc src/bin/main.c -o build/build-gcc/gcc-zernit || exit 1 ;}
|
|
@ printf '%s\n' "Compilation of target for gcc finished"
|
|
|
|
build-clang-c:
|
|
@ printf 'FIXME: %s\n' "translate zernit in clang"
|
|
@ exit 1
|
|
|
|
build-clang-ccp:
|
|
@ printf 'FIXME: %s\n' "translate zernit in clang"
|
|
@ exit 1
|
|
|
|
build-brainfuck:
|
|
@ printf 'FIXME: %s\n' "translate zernit in brainfuck"
|
|
@ exit 1
|
|
|
|
# FIXME: requires python3.6+ and pip3
|
|
build-python:
|
|
@ pip3 install -r requirements.txt
|
|
|
|
build-vlang:
|
|
@ printf 'FIXME: %s\n' "translate zernit in vlang"
|
|
@ exit 1
|
|
|
|
## CHECK/TESTS ##
|
|
|
|
check:
|
|
@ printf 'FIXME: %s\n' "Check all targets if executed"
|
|
@ exit 1
|
|
|
|
check-gcc-c:
|
|
@ printf 'FIXME: %s\n' "Add tests for gc"
|
|
@ exit 1
|
|
|
|
check-clang-c:
|
|
@ printf 'FIXME: %s\n' "Add tests for gcc"
|
|
@ exit 1
|
|
|
|
check-gcc-ccp:
|
|
@ printf 'FIXME: %s\n' "Add tests for clang"
|
|
@ exit 1
|
|
|
|
check-python:
|
|
@ printf 'FIXME: %s\n' "Add tests for python"
|
|
@ exit 1
|
|
|
|
check-rustlang:
|
|
@ printf 'FIXME: %s\n' "Add tests for rustlang"
|
|
@ exit 1
|
|
|
|
check-brainfuck:
|
|
@ printf 'FIXME: %s\n' "Add tests for brainfuck"
|
|
@ exit 1
|
|
|
|
check-shell:
|
|
@ printf 'FIXME: %s\n' "Add tests for shell"
|
|
@ exit 1
|
|
|
|
check-bash:
|
|
@ printf 'FIXME: %s\n' "Add tests for bash"
|
|
@ exit 1
|
|
|
|
check-vlang:
|
|
@ printf 'FIXME: %s\n' "Add tests for vlang"
|
|
@ exit 1
|
|
|
|
## BENCHES ##
|
|
|
|
# FIXME: Run all benches if this is executed
|
|
bench:
|
|
@ exit 1
|
|
|
|
# FIXME: Run vendor and
|
|
bench-rustlang:
|
|
@ exit 1
|
|
@ cargo bench
|
|
|
|
## CLEAN ##
|
|
|
|
clean:
|
|
@ [ -d build ] && rm -r build
|
|
@ printf '%s\n' "Build directory has been cleaned"
|
|
|
|
clean-vendor:
|
|
@ # FIXME: Output helpful message if directory doesn't exists
|
|
@ [ -d vendor ] && rm -r vendor
|