summaryrefslogtreecommitdiff
path: root/dlsym/Makefile (plain)
blob: f44110cba4acb737e9d8aaab540d4cf147fe9261
1
2
3
4
5
6
7
8
9
10
11
12
LDFLAGS=-ldl
all: subject.so dlsym

subject.so: subject.c
	$(CC) -shared -o $@ $<

dlsym: dlsym.o

.PHONY: clean

clean:
	rm -f subject.so dlsym *.o