11 lines
275 B
Makefile
11 lines
275 B
Makefile
tests : libstrops.a
|
|
gcc -ansi -I . -L. -o tests tests.c -Wl,-Bstatic -lstrops -Wl,-Bdynamic
|
|
|
|
libstrops.a : strops.o
|
|
ar cr libstrops.a strops.o
|
|
rm strops.o
|
|
|
|
strops.o : strops.c strops.h
|
|
gcc -c -ansi -ggdb -o strops.o strops.c
|
|
# gcc -c -ansi -O2 -pipe -o strops.o strops.c
|