blob: 16d9840ac9a0e3093ca3adb619fdc8fa040f93cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
test: getpid.so
./keygen-test
getpid.o: getpid.c
gcc -fPIC -c $< -o $@
getpid.so: getpid.o
gcc -shared -o $@ $<
clean:
rm -f getpid.o getpid.so key1 key1.pub key2 key2.pub
|