Skip to content
Snippets Groups Projects

qosmngr: move Device.QoS. from bbfdm to qosmngr

Merged Husaam Mehdi requested to merge for_bbf_qos into devel
5 files
+ 2235
2
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 21
0
LIB_QOS_BBF := libqos_bbf.so
OBJS := qos_bbf.o
LIB_CFLAGS = $(CFLAGS) -Wall -Werror
LIB_LDFLAGS = $(LDFLAGS)
FPIC := -fPIC
.PHONY: all
%.o: %.c
$(CC) $(LIB_CFLAGS) $(FPIC) -c -o $@ $<
all: $(LIB_QOS_BBF)
$(LIB_QOS_BBF): $(OBJS)
$(CC) $(LIB_CFLAGS) $(LIB_LDFLAGS) -shared -o $@ $^
clean:
rm -f *.o $(LIB_QOS_BBF)
Loading