Skip to content

Commit 651d47c

Browse files
committed
Uploading changes to build system
1 parent eabc113 commit 651d47c

File tree

11 files changed

+934
-415
lines changed

11 files changed

+934
-415
lines changed

Makefile.am

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,11 @@ else
1515
APP_DIR=app
1616
endif
1717

18-
SUBDIRS = safe_c_stub src $(APP_DIR) $(TEST_DIR)
18+
if LIB_NOT_SUPPORTED
19+
LIB_DIR=
20+
else
21+
LIB_DIR=src
22+
endif
23+
24+
SUBDIRS = safe_c_stub $(LIB_DIR) $(APP_DIR) $(TEST_DIR)
1925

Makefile.in

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Makefile.in generated by automake 1.15.1 from Makefile.am.
1+
# Makefile.in generated by automake 1.16.1 from Makefile.am.
22
# @configure_input@
33

4-
# Copyright (C) 1994-2017 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
55

66
# This Makefile.in is free software; the Free Software Foundation
77
# gives unlimited permission to copy and/or distribute it,
@@ -166,7 +166,7 @@ am__recursive_targets = \
166166
$(RECURSIVE_CLEAN_TARGETS) \
167167
$(am__extra_recursive_targets)
168168
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
169-
cscope distdir dist dist-all distcheck
169+
cscope distdir distdir-am dist dist-all distcheck
170170
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
171171
# Read a list of newline-separated strings from the standard input,
172172
# and print each of them once, without duplicates. Input order is
@@ -276,6 +276,8 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
276276
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
277277
LD = @LD@
278278
LDFLAGS = @LDFLAGS@
279+
LIBACVP_CFLAGS = @LIBACVP_CFLAGS@
280+
LIBACVP_LDFLAGS = @LIBACVP_LDFLAGS@
279281
LIBCURL_CFLAGS = @LIBCURL_CFLAGS@
280282
LIBCURL_LDFLAGS = @LIBCURL_LDFLAGS@
281283
LIBOBJS = @LIBOBJS@
@@ -372,7 +374,9 @@ EXTRA_DIST = ms docker certs scripts docs metadata murl
372374
@UNIT_TEST_SUPPORTED_TRUE@TEST_DIR = test
373375
@APP_NOT_SUPPORTED_FALSE@APP_DIR = app
374376
@APP_NOT_SUPPORTED_TRUE@APP_DIR =
375-
SUBDIRS = safe_c_stub src $(APP_DIR) $(TEST_DIR)
377+
@LIB_NOT_SUPPORTED_FALSE@LIB_DIR = src
378+
@LIB_NOT_SUPPORTED_TRUE@LIB_DIR =
379+
SUBDIRS = safe_c_stub $(LIB_DIR) $(APP_DIR) $(TEST_DIR)
376380
all: all-recursive
377381

378382
.SUFFIXES:
@@ -397,8 +401,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
397401
echo ' $(SHELL) ./config.status'; \
398402
$(SHELL) ./config.status;; \
399403
*) \
400-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
401-
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
404+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
405+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
402406
esac;
403407

404408
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -546,7 +550,10 @@ distclean-tags:
546550
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
547551
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
548552

549-
distdir: $(DISTFILES)
553+
distdir: $(BUILT_SOURCES)
554+
$(MAKE) $(AM_MAKEFLAGS) distdir-am
555+
556+
distdir-am: $(DISTFILES)
550557
$(am__remove_distdir)
551558
test -d "$(distdir)" || mkdir "$(distdir)"
552559
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \

0 commit comments

Comments
 (0)