Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 918f9e8141e167a587d09780df7e9a54 > files > 18

idn-1.35-2.mga7.armv7hl.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