We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 652f965 commit f5ded7fCopy full SHA for f5ded7f
Makefile
@@ -1,6 +1,6 @@
1
CC=gcc
2
LD=gcc
3
-AR=libtool
+AR=ar -rs
4
CFLAGS=-Wall -Werror -g -I./src
5
LIBLINKS=-lm
6
LIB_DIR=./libs
@@ -73,10 +73,10 @@ document: .doxygen.stamp
73
@touch .doxygen.stamp
74
75
$(COMMON_LIB): $(COMMON_OFILES)
76
- $(AR) -static -o $(LIB_DIR)/$(COMMON_LIB) $(COMMON_OFILES)
+ $(AR) $(LIB_DIR)/$(COMMON_LIB) $(COMMON_OFILES)
77
78
$(SIPNET_LIB): $(SIPNET_OFILES)
79
- $(AR) -static -o $(LIB_DIR)/$(SIPNET_LIB) $(SIPNET_OFILES)
+ $(AR) $(LIB_DIR)/$(SIPNET_LIB) $(SIPNET_OFILES)
80
81
sipnet: $(SIPNET_OFILES) $(COMMON_LIB)
82
$(LD) $(LDFLAGS) -o sipnet $(SIPNET_OFILES) $(LIBLINKS) $(SIPNET_LIBS)
0 commit comments