Skip to content

Commit 78cd097

Browse files
committed
null-shell 0.1
0 parents  commit 78cd097

File tree

11 files changed

+1108
-0
lines changed

11 files changed

+1108
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.in
2+
/aclocal.m4
3+
/autom4te.cache
4+
/compile
5+
/configure
6+
/depcomp
7+
/install-sh
8+
/missing

AUTHORS

Whitespace-only changes.

COPYING

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

ChangeLog

Whitespace-only changes.

INSTALL

Lines changed: 368 additions & 0 deletions
Large diffs are not rendered by default.

Makefile.am

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
bin_PROGRAMS = null-shell
2+
3+
null_shell_SOURCES = \
4+
null_shell.c
5+
6+
null_shell_CFLAGS = -std=c89 -W -Wall -Werror
7+
null_shell_LDFLAGS = -static

NEWS

Whitespace-only changes.

README

Whitespace-only changes.

autogen.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
3+
set -e
4+
srcdir="$(dirname $0)"
5+
cd "$srcdir"
6+
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then
7+
LIBTOOLIZE="${GLIBTOOLIZE}"
8+
export LIBTOOLIZE
9+
fi
10+
which autoreconf >/dev/null || \
11+
(echo "configuration failed, please install autoconf first" && exit 1)
12+
autoreconf --install --force --warnings=all

configure.ac

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
AC_PREREQ([2.59])
2+
AC_INIT([null-shell], [0.1], [kmx.io], [null-shell], [http://kmx.io/])
3+
AC_CONFIG_SRCDIR([null_shell.c])
4+
5+
AM_INIT_AUTOMAKE
6+
7+
AC_PROG_CC
8+
9+
PKG_PROG_PKG_CONFIG([0.25])
10+
11+
AC_CONFIG_FILES([Makefile])
12+
AC_OUTPUT

0 commit comments

Comments
 (0)