Files
strops/Makefile
2025-05-21 17:49:38 +02:00

14 lines
391 B
Makefile

tests : libstrops.a libstrops.so
gcc -ansi -I . -L. -o tests tests.c -Wl,-Bstatic -lstrops -Wl,-Bdynamic
# gcc -ansi -I . -L. -o tests tests.c -lstrops
libstrops.so : strops.o
gcc -shared -o libstrops.so strops.o
libstrops.a : strops.o
ar cr libstrops.a strops.o
strops.o : strops.c strops.h
gcc -c -fPIC -ansi -ggdb -o strops.o strops.c
# gcc -c -ansi -O2 -pipe -o strops.o strops.c