Skip to content
Snippets Groups Projects
Commit e82c8d6e authored by Felix Fietkau's avatar Felix Fietkau
Browse files

swconfig: replace the shared library with a static one


Reduces binary size

Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent e175a4d4
No related branches found
No related tags found
No related merge requests found
......@@ -42,13 +42,12 @@ define Build/InstallDev
$(CP) $(PKG_BUILD_DIR)/swlib.h $(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_BUILD_DIR)/libsw.so $(1)/usr/lib/
$(CP) $(PKG_BUILD_DIR)/libsw.a $(1)/usr/lib/
endef
define Package/swconfig/install
$(INSTALL_DIR) $(1)/sbin $(1)/lib/network
$(INSTALL_BIN) $(PKG_BUILD_DIR)/swconfig $(1)/sbin/swconfig
$(INSTALL_BIN) $(PKG_BUILD_DIR)/libsw.so $(1)/lib
$(INSTALL_DATA) ./files/switch.sh $(1)/lib/network/
endef
......
......@@ -8,8 +8,9 @@ all: swconfig
%.o: %.c
$(CC) $(CFLAGS) -fPIC -c -o $@ $^
libsw.so: swlib.o
$(CC) $(CFLAGS) -fPIC -shared -o $@ swlib.o
libsw.a: swlib.o
$(AR) rcu $@ swlib.o
$(RANLIB) $@
swconfig: libsw.so cli.o uci.o
swconfig: libsw.a cli.o uci.o
$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) -L./ -lsw
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment