blob: f0011fb51f76a5ced9d47e501449db6f43effe2b (
plain)
1
2
3
4
5
6
7
|
YAZ0_CC := cc
YAZ0_CFLAGS := -fPIC -shared -O3 -Wall -s
$(YAZ0): include tools/yaz0/Makefile
@echo [tools] building yaz0.so
@$(YAZ0_CC) $(YAZ0_CFLAGS) -o $(YAZ0) tools/yaz0/yaz0.c
|