Skip to content

Commit 5179dd8

Browse files
committed
build system touches
- clean-local target in lambdaize to remove pyc files - use libtool - add some files to EXTRA_DIST at top of hierarchy
1 parent 191debf commit 5179dd8

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ Makefile.in
88

99
/aclocal.m4
1010
/autom4te.cache/
11+
/config.guess
1112
/config.h
1213
/config.h.in
1314
/config.h.in~
1415
/config.log
16+
/config.sub
1517
/config.status
1618
/configure
1719
/depcomp
1820
/install-sh
21+
/libtool
22+
/ltmain.sh
1923
/missing
2024
/stamp-h1
2125
/compile

Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
ACLOCAL_AMFLAGS = -I m4
2+
13
SUBDIRS = src
4+
EXTRA_DIST = README.md autogen.sh

configure.ac

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ AC_INIT([mu], [0.01], [[email protected]])
66
AM_INIT_AUTOMAKE([foreign])
77
AC_CONFIG_SRCDIR([src/frontend/hello.cc])
88
AC_CONFIG_HEADERS([config.h])
9+
AC_CONFIG_MACRO_DIRS([m4])
910

1011
# Add C++ flags
1112
CXX14_FLAGS="-std=c++14 -pthread"
@@ -15,7 +16,7 @@ AC_SUBST([PICKY_CXXFLAGS])
1516

1617
# Checks for programs.
1718
AC_PROG_CXX
18-
AC_PROG_RANLIB
19+
LT_INIT
1920

2021
# Checks for libraries.
2122
PKG_CHECK_MODULES([OpenSSL], [libssl libcrypto])

m4/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*

src/lambdaize/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
clean-local:
2+
@find . -type f -name '*.pyc' -print0 | xargs -0 rm
3+
14
EXTRA_DIST = .pylintrc Makefile.am lambda_extra_packages.tar.gz lambda_function_template.py lambdaize.sh libmu/__init__.py libmu/defs.py libmu/fd_wrapper.py libmu/handler.py libmu/machine_state.py libmu/server.py libmu/socket_nb.py libmu/util.py test/__init__.py test/__main__.py test/data/server_chain.pem test/data/server_key.pem test/defs.py test/encsrv.py test/run.py test/states.py test/util.py vpxenc_server.py xcenc_server.py

0 commit comments

Comments
 (0)