8 lines
150 B
Makefile
8 lines
150 B
Makefile
|
|
all: tester
|
|
|
|
libnoja.a:
|
|
make -B -C .. tests/libnoja.a BUILD_MODE=RELEASE OUTDIR=tests
|
|
|
|
tester: tester.c libnoja.a
|
|
gcc $^ -o $@ -Wall -Wextra -lm -g
|