blob: 02b3cda6b660edc79842952dd8e772f821d9b96e [file] [log] [blame]
# Copyright (c) 2011 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.
PKG_CONFIG ?= pkg-config
CXXFLAGS += -g -Wall -Werror `$(PKG_CONFIG) --cflags glib-2.0 ibus-1.0`
LDLIBS = `$(PKG_CONFIG) --libs ibus-1.0`
ibusclient: ibusclient.cc
$(CXX) $(LDFLAGS) $(CXXFLAGS) $^ -o ../$@ $(LDLIBS)