Skip to content

Commit

Permalink
-.so.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-Souto committed Jun 1, 2024
1 parent cd6e76e commit 571c26d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ INCLUDE = bin/main.o bin/Server.o bin/LinkedPair.o bin/HTML.o \
bin/lua/export.o bin/lua/import.o

build: $(INCLUDE)
$(CC) $^ $(CFLAGS) -o bin/mare.so $(LUA_CFLAGS) $(LUA_LDLIBS) -lssl -lcrypto
$(CC) $^ $(CFLAGS) -o bin/mare $(LUA_CFLAGS) $(LUA_LDLIBS) -lssl -lcrypto

bin/main.o: src/main.cpp
$(CC) -c $^ -o $@
Expand Down Expand Up @@ -44,4 +44,4 @@ target:
mkdir -p bin/lua

clean:
rm -f bin/*.o bin/http/*.o bin/lua/*.o bin/mare.so
rm -f bin/*.o bin/http/*.o bin/lua/*.o bin/mare

0 comments on commit 571c26d

Please sign in to comment.