8 lines
128 B
Makefile
8 lines
128 B
Makefile
all: build
|
|
|
|
build:
|
|
gcc -o example ./example.c -L ../zig-out/lib/ -lhexa
|
|
|
|
run: build
|
|
LD_LIBRARY_PATH=../zig-out/lib/ ./example
|