mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
f5cf1a54de
The rationale is documented well in the automake manual.
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
# Makefile for C source code
|
|
#
|
|
# Copyright (C) 2011 Colin Walters <walters@verbum.org>
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
bin_PROGRAMS += ostree
|
|
|
|
ostree_SOURCES = ostree/main.c \
|
|
ostree/ot-builtins.h \
|
|
ostree/ot-builtin-checkout.c \
|
|
ostree/ot-builtin-commit.c \
|
|
ostree/ot-builtin-compose.c \
|
|
ostree/ot-builtin-diff.c \
|
|
ostree/ot-builtin-fsck.c \
|
|
ostree/ot-builtin-init.c \
|
|
ostree/ot-builtin-log.c \
|
|
ostree/ot-builtin-pull.c \
|
|
ostree/ot-builtin-run-triggers.c \
|
|
ostree/ot-builtin-remote.c \
|
|
ostree/ot-builtin-rev-parse.c \
|
|
ostree/ot-builtin-show.c \
|
|
$(NULL)
|
|
ostree_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/libotutil -I$(srcdir)/libostree -I$(srcdir)/ostree -DLOCALEDIR=\"$(datadir)/locale\" $(OT_COREBIN_DEP_CFLAGS)
|
|
ostree_LDADD = libotutil.la libostree.la $(OT_COREBIN_DEP_LIBS)
|