mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 07:11:06 -04:00
8 lines
185 B
Makefile
8 lines
185 B
Makefile
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
|
|
|