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 09:32:48 +02:00

14 lines
343 B
Makefile

libnosni.so: nss.o common.o common_cpp.o
g++ -g -fPIC -shared -ldl -lcurl -lcurlpp *.o -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