summaryrefslogtreecommitdiffstats
path: root/doc/sources/c/compile
blob: 9be0fbbdc5120ad50d812aa844c6df15d4ca48b2 (plain)
1
2
3
4
5
#!/bin/sh

gcc -Wall -O2 -fPIC -c module.c
gcc -shared -o module.so module.o
gcc -o test main.c -ldl