1
0
Fork 0
mirror of https://gitlab.com/niansa/nosni.git synced 2025-03-06 20:53:26 +01:00
nosni/Makefile
2023-04-13 10:28:28 +02:00

14 lines
340 B
Makefile

libnosni.so: nss.o common.o common_cpp.o
g++ -fPIC -shared *.o -ldl -lcurl -lcurlpp -o libnosni.so
nss.o: nss.c
gcc -c -fPIC -I /usr/include/nspr/ nss.c -o nss.o
common.o: common.c common.h
gcc -c -fPIC common.c -o common.o
common_cpp.o: common.cpp common.h
g++ -c -fPIC -std=c++17 common.cpp -o common_cpp.o
clean:
rm -f *.so *.o