Commit 3cf69bc0 authored by Seblu's avatar Seblu
Browse files

defining archi.

parents
Loading
Loading
Loading
Loading

Makefile.am

0 → 100644
+20 −0
Original line number Diff line number Diff line
SUBDIRS = 	src

noinst_DATA=42sh$(EXEEXT)
DISTCLEANFILES=42sh$(EXEEXT)

.PHONY: tar doc re

42sh$(EXEEXT): src/42sh$(EXEEXT)
	cp -f src/42sh$(EXEEXT) .

tar: distcheck

re: clean all

doc:
	cd $(srcdir)/doc && $(MAKE) doc

CLEANFILES= *~ '\#*'

EXTRA_DIST = AUTHORS README TODO

TODO

0 → 100644
+0 −0

Empty file added.

bootstrap

0 → 100755
+22 −0
Original line number Diff line number Diff line
#!/bin/sh
## bootstrap for 42sh in /home/seblu/devel/c/42sh
##
## Made by Seblu
## Login   <seblu@epita.fr>
##
## Started on  Sun Jul 16 19:43:53 2006 Seblu
## Last update Sun Jul 16 19:44:01 2006 Seblu
##

# Failures do matter.
set -e

# See what i'am doing
set -x

# install the GNU Build System.
autoreconf -i -f -v

# FIXME: autoheader does not obey --force.
find . -name 'config.h.in' | xargs touch
 No newline at end of file

configure.ac

0 → 100644
+137 −0
Original line number Diff line number Diff line
# Require a recent version of autotools
AC_PREREQ(2.59)

# Auto conf init
AC_INIT([42sh],[1.0],[seblu@seblu.net], [42sh])

# Define configure generator directory
AC_CONFIG_AUX_DIR([build])

# Auto Make init
AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])

echo "Checking locale CFLAGS"
# Check platform
AC_CANONICAL_HOST

case $host_os in
  *netbsd*)
	AC_SUBST([CFLAGS], ['-Wall -Werror -W -ansi -pedantic'])
	;;
  *osf*)
	AC_SUBST([CFLAGS], ['-Wall -Werror -W -ansi -pedantic -D_XOPEN_SOURCE=600'])
	;;
  *solaris*)
	AC_SUBST([CFLAGS], ['-Wall -Werror -W -ansi -pedantic -D_XOPEN_SOURCE=600'])
	;;
  *linux*)
	AC_SUBST([CFLAGS], ['-Wall -Werror -W -ansi -pedantic -D_XOPEN_SOURCE=600'])
	;;
  *)
	pl="`uname -s`"
	AC_MSG_ERROR([Platform $pl not supported.])
	;;
esac

# Check for C compiler
AC_LANG([C])
AC_PROG_CC

# Check for Make
AC_PROG_MAKE_SET

# check for ranlib
AC_PROG_RANLIB

# Check for lib efence
AC_CHECK_LIB([efence], [malloc], [EFENCELIB=-lefence])
AC_SUBST([EFENCELIB])

# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_CLOSEDIR_VOID
AC_FUNC_REALLOC
AC_FUNC_FORK
AC_FUNC_STAT
AC_FUNC_ALLOCA
AC_HEADER_DIRENT
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS([malloc.h])
AC_CHECK_FUNCS([strtol])
AC_CHECK_FUNCS([dup])
AC_CHECK_FUNCS([dup2])
AC_CHECK_FUNCS([strchr])
AC_CHECK_FUNCS([strdup])
AC_CHECK_FUNCS([getcwd])
AC_CHECK_FUNCS([setenv])
AC_CHECK_FUNCS([strdup])
AC_CHECK_FUNCS([strstr])
AC_CHECK_FUNCS([get_current_dir_name])
AC_CHECK_FUNCS([atexit])
AC_CHECK_FUNCS([putenv])
AC_CHECK_FUNCS([strtoul])

AC_TYPE_PID_T
AC_TYPE_SIZE_T

# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST

# Check for headers
AC_CHECK_HEADERS([sys/param.h unistd.h])
AC_CHECK_HEADERS([fcntl.h])
AC_CHECK_HEADERS([libintl.h])
AC_CHECK_HEADERS([stddef.h])

dnl Memo:
dnl AC ARG WITH(package, help-string, [action-if-given], [action-if-not-given])

AC_ARG_WITH([debug],
  [AS_HELP_STRING([--with-debug], [use -g and don't use -DNDEBUG -O3])],
  [dnl action-if-given: --with-debug => -g || --without-debug => -DNDEBUG
    if test x$withval = xyes; then
      CFLAGS="$CFLAGS -g"
    else
      CFLAGS="$CFLAGS -DNDEBUG -O3"
    fi
  ],
  [dnl action-if-not-given: MAINTAINER_MODE => -g || !MAINTAINER_MODE => -DNDEBUG
    # If we are in maintainer mode, we want to have DEBUG (NDEBUG==NO DEBUG)
    # So we simply replace -DNDEBUG by -g
    if test x$MAINTAINER_MODE = xyes; then
      CFLAGS="$CFLAGS -g"
    else
      CFLAGS="$CFLAGS -DNDEBUG -O3"
    fi
  ]
)

AC_ARG_WITH([leaktrack],
  [AS_HELP_STRING([--with-leaktrack], [add a builtin leak track for debug])],
  [
    if test x$withval = xyes; then
      CFLAGS="$CFLAGS -DLEAK_TRACK"
    fi
  ],
)

AC_SUBST([CFLAGS])

# define Autoconf config header
AC_CONFIG_HEADERS([config.h])

# define Autoconf config files
AC_CONFIG_FILES([
	Makefile
	doc/Makefile
	check/Makefile
	check/leaktrack/Makefile
	src/Makefile
	src/parser/Makefile
	src/evalexpr/Makefile
])

AC_CONFIG_FILES([check/checker_wrapper.sh],
                [chmod a=rx check/checker_wrapper.sh])

AC_OUTPUT

src/Makefile.am

0 → 100644
+18 −0
Original line number Diff line number Diff line
SUBDIRS=ast builtin lexer parser
bin_PROGRAMS=42sh

#42sh_LDADD  = parser/libparse.a ../check/leaktrack/libmem.a evalexpr/libevalexpr.a


42sh_SOURCES=	shell/shell.h			\
		shell/shell_entry.c		\
		shell/shell_init.c		\
		shell/shell_destroy.c

# EXTRA_DIST=					\
#                 parser/parse42.y		\
#                 parser/scan42.l			\
# 		evalexpr/evalexpr.y		\
# 		evalexpr/evalexpr.l

CLEANFILES= *~ '\#*'