File: Makefile

package info (click to toggle)
python-auditwheel 6.6.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 980 kB
  • sloc: python: 6,165; ansic: 304; cpp: 66; sh: 28; makefile: 25; f90: 12
file content (13 lines) | stat: -rw-r--r-- 289 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: all clean

all: lib-src/b/libb.so lib-src/a/liba.so

clean:
	-rm -f lib-src/b/libb.so lib-src/a/liba.so

lib-src/b/libb.so: lib-src/b/b.c
	gcc -fPIC -shared -o lib-src/b/libb.so lib-src/b/b.c


lib-src/a/liba.so: lib-src/a/a.c
	gcc -fPIC -shared -o lib-src/a/liba.so lib-src/a/a.c