xbot/mods/openssl/Makefile
2024-03-14 03:20:38 -05:00

8 lines
141 B
Makefile
Executable File

CC=gcc
CFLAGS=-g -fPIC -I../../lib -lcrypto -lssl
OBJ=../openssl.so
main:
$(CC) -shared -o $(OBJ) $(CFLAGS) ./openssl.c
@echo "All Done!"