summaryrefslogtreecommitdiff
path: root/Makefile
blob: 4ff2901074bb59334d58b14c0f1430a9ee18cfcb (plain)
1
2
3
4
5
6
7
8
9
10
LIB_SRCS = utils.c sock_events.c libc_overrides.c


default: libudtrace.so

libudtrace.so: $(LIB_SRCS)
	$(CC) $(CFLAGS) -fPIC -shared -Wl,-soname,libudtrace.so -o $@ $^ -ldl

clean:
	rm -f *.o libudtrace.so
personal git repositories of Harald Welte. Your mileage may vary