mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
8c4a02fbdf
- uses 104 bit packet for formatting - makes for easy transition from verilog testbench - happy with this one...
17 lines
220 B
Bash
Executable File
17 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
EINCS=../include
|
|
SCRIPT=$(readlink -f "$0")
|
|
EXEPATH=$(dirname "$SCRIPT")
|
|
cd $EXEPATH
|
|
|
|
# Create the binaries directory
|
|
mkdir -p bin
|
|
|
|
# Build all tests
|
|
gcc src/e-access.c -o bin/e-access -I ${EINCS}
|
|
|
|
|