Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-release > by-pkgid > 28a563f9a56009e76309c0501a41b591 > files > 15

idn-1.33-1.mga6.x86_64.rpm

INCLUDE=/usr/include/python2.1
INSTDIR=/usr/local/lib/python2.1/site-packages
LIBS=-lidn

all: idn.so

%.so: %.c
	gcc -I${INCLUDE} ${LIBS} -shared -fPIC -o $@ $<

install:
	cp idn.so ${INSTDIR}

clean:
	rm -f *.so