blob: 1612ab8e9d4e286546c3b0f34ec9eb670078387d [file] [log] [blame]
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
CFLAGS += -Wall -Wextra -Werror -fPIC -I ../include
all: libqmi.so
LIBQMI_SRCS = dev.c file.c mock.c poller.c qmictl.c qmidev.c qmimsg.c qrb.c \
util.c
LIBQMI_OBJS = $(LIBQMI_SRCS:.c=.o)
libqmi.so: $(LIBQMI_OBJS)
$(CC) $(LDFLAGS) -Wl,-soname,libqmi.so -shared -o $@ $^
clean:
rm -f *.o libqmi.so