docs
[mirrors/Programs.git] / c / troll23 / Makefile
CommitLineData
95cee86b
H
1proj=troll23
2
3unexport LD_PRELOAD
4$(proj).so: $(proj).c
5 $(CC) -shared -fPIC -ldl $? -o $@
6 # To test:
7 # export LD_PRELOAD=$(PWD)/$@
8 # touch /tmp/deleteme; rm /tmp/deleteme
5837f17e
TM
9 # Or:
10 # make go
11 # make ssh
12
13go: test $(proj).so
14 LD_PRELOAD=$(PWD)/$(proj).so ./test
15
16ssh: $(proj).so
17 LD_PRELOAD=$(PWD)/$(proj).so ./sshkeys.sh
This page took 0.444642 seconds and 4 git commands to generate.