File: Makefile

package info (click to toggle)
libidn 1.43-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,376 kB
  • sloc: java: 14,167; ansic: 7,085; cs: 1,974; sh: 1,283; perl: 1,238; makefile: 680; lisp: 231; php: 214; xml: 88; python: 9
file content (14 lines) | stat: -rw-r--r-- 214 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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