File: Makefile

package info (click to toggle)
websockify 0.9.0%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 504 kB
  • sloc: python: 2,859; cs: 142; ansic: 55; makefile: 33; sh: 22
file content (11 lines) | stat: -rw-r--r-- 153 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
TARGETS=rebind.so
CFLAGS += -fPIC

all: $(TARGETS)

rebind.so: rebind.o
	$(CC) $(LDFLAGS) $^ -shared -fPIC -ldl -o $@

clean:
	rm -f rebind.o rebind.so