summaryrefslogtreecommitdiff
path: root/Makefile-ostree.am
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2011-11-02 15:45:32 -0400
committerColin Walters <walters@verbum.org>2011-11-02 15:45:32 -0400
commit21c7ff74b6e55058915d86f01f19f7b5e831e412 (patch)
tree66a2b72c2d72d0b735adfd1f95c0323dfb01645a /Makefile-ostree.am
parent2b00cf381076bb72557f9721dbc3ca8dc2940440 (diff)
downloadostree-21c7ff74b6e55058915d86f01f19f7b5e831e412.tar.gz
De-recursify source tree
Diffstat (limited to 'Makefile-ostree.am')
-rw-r--r--Makefile-ostree.am38
1 files changed, 38 insertions, 0 deletions
diff --git a/Makefile-ostree.am b/Makefile-ostree.am
new file mode 100644
index 00000000..01ffbecc
--- /dev/null
+++ b/Makefile-ostree.am
@@ -0,0 +1,38 @@
+# Makefile for C source code
+#
+# Copyright (C) 2011 Colin Walters <walters@verbum.org>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Author: Colin Walters <walters@verbum.org>
+
+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-fsck.c \
+ ostree/ot-builtin-init.c \
+ ostree/ot-builtin-link-file.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 = -I$(srcdir)/src -I$(srcdir)/libostree -I$(srcdir)/libotutil -DLOCALEDIR=\"$(datadir)/locale\" $(OT_COREBIN_DEP_CFLAGS)
+ostree_LDADD = libotutil.la libostree.la $(OT_COREBIN_DEP_LIBS)