#!/bin/sh
cc -c -o $1.o $1.c
ld -d -warn-section-align -sort-comon -shared -o $1.so $1.o 
mv $1.so ../../ext_$1.so
