summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile.in14
-rw-r--r--config.lzy27
-rwxr-xr-xconfigure114
-rw-r--r--pemagine.lzy128
4 files changed, 0 insertions, 283 deletions
diff --git a/Makefile.in b/Makefile.in
deleted file mode 100644
index b370cb0..0000000
--- a/Makefile.in
+++ /dev/null
@@ -1,14 +0,0 @@
-all:
- ./lazy -x build
-
-install:
- ./lazy -x build -e install
-
-clean:
- rm -rf src
- rm -rf lib
- rm -f lazy
- rm -f lazy.config.tag
- rm -f lz_stack
- rm -f *.objs
- rm -rf *.lst
diff --git a/config.lzy b/config.lzy
deleted file mode 100644
index 6512421..0000000
--- a/config.lzy
+++ /dev/null
@@ -1,27 +0,0 @@
-# package
-lz_package=pemagine
-
-
-# toolchain
-lz_default_target=x86_64-nt64-midipix
-lz_default_arch=x86_64
-lz_default_compiler=gcc
-
-
-# lazy
-lz_cflags_cmdline=
-lz_cxxflags_cmdline=
-
-lz_cflags_debug=
-lz_cflags_release=
-
-lz_cflags_include_first=
-lz_cflags_include_last=
-lz_cflags_include_cmdline=
-lz_cxxflags_include_cmdline=
-
-lz_exec_prefix=
-lz_bindir=
-lz_libdir=
-lz_includedir=
-lz_syslibdir=
diff --git a/configure b/configure
deleted file mode 100755
index 1e02d8f..0000000
--- a/configure
+++ /dev/null
@@ -1,114 +0,0 @@
-#!/bin/sh
-
-# a simple configure-make wrapper for use in conjunction with the 'lazy' build script.
-# 'lazy' is deviant, occasionally useful, and permissively licensed; get_lazy() below,
-# then look for configure.template in the root directory.
-
-init_vars()
-{
- lz_config_dir=`readlink -f $(dirname $0)`
- lz_pwd=`pwd`
-
- if [ x"$lz_config" = x ]; then
- . $lz_config_dir/config.lzy || exit 2
- else
- . "$lz_config" || exit 2
- fi
-}
-
-
-error_msg()
-{
- echo $@ >&2
-}
-
-
-require_out_of_tree()
-{
- if [ x"$lz_config_dir" = x"$lz_pwd" ]; then
- error_msg "$lz_package: out-of-tree builds are required."
- error_msg "please invoke configure again from a clean build directory."
- exit 2
- fi
-
- return 0
-}
-
-
-get_lazy()
-{
- which lazy && lazy=`which lazy` && return 0
-
- if ! [ -d slazy ]; then
- git clone git://midipix.org/lazy slazy || exit 2
- fi
-
- lazy=$lz_pwd/slazy/lazy
-}
-
-
-lazy_approach()
-{
- if [ x"$lz_prefix" = x ]; then
- error_msg "prefix is required."
- exit 2
- fi
-
- if [ x"$lz_arch" = x ]; then lz_arch=$lz_default_arch; fi
- if [ x"$lz_target" = x ]; then lz_target=$lz_default_target; fi
- if [ x"$lz_compiler" = x ]; then lz_compiler=$lz_default_compiler; fi
- if [ x"$lz_compiler" = x ]; then lz_compiler=gcc; fi
-
- $lazy -x config $lz_debug \
- -t $lz_target \
- -c $lz_compiler \
- -n $lz_package \
- -p $lz_config_dir \
- -f $lz_prefix \
- || exit 2
-
-}
-
-
-lazy_copy()
-{
- cp "$lz_config_dir/Makefile.in" "$lz_pwd/Makefile"
-}
-
-
-for arg ; do
- case "$arg" in
- --help) usage
- ;;
-
- --prefix=*)
- lz_prefix=${arg#*=}
- ;;
- --host=*)
- lz_target=${arg#*=}
- ;;
- --target=*)
- lz_target=${arg#*=}
- ;;
- --compiler=*)
- lz_compiler=${arg#*=}
- ;;
- --config=*)
- lz_config=${arg#*=}
- ;;
- --debug)
- lz_debug='-d'
- ;;
- *)
- error_msg ${arg#}: "unsupported config argument."
- exit 2
- ;;
- esac
-done
-
-
-init_vars
-require_out_of_tree
-get_lazy
-lazy_approach
-lazy_copy
diff --git a/pemagine.lzy b/pemagine.lzy
deleted file mode 100644
index ed1df9c..0000000
--- a/pemagine.lzy
+++ /dev/null
@@ -1,128 +0,0 @@
-lz_project_rules()
-{
- lz_rules="all install xstatic install_xstatic"
-}
-
-lz_project_definitions()
-{
- pemagine_lib_name=libpemagine
- pemagine_so_name="$lz_build_dir/lib/$pemagine_lib_name$lz_dylib_ext"
- pemagine_a_name="$lz_build_dir/lib/$pemagine_lib_name$lz_stlib_ext"
- pemagine_so_def_name="$lz_build_dir/lib/$pemagine_lib_name$lz_libdef_ext"
- pemagine_implib_name="$lz_build_dir/lib/$pemagine_lib_name$lz_implib_ext"
-
- lz_cflags_common="-DMIDIPIX_FREESTANDING
- -D__NT$lz_arch_bits \
- -UWIN32 -U_WIN32 -U__WIN32 -U__WIN32__ \
- -UWIN64 -U_WIN64 -U__WIN64 -U__WIN64__ \
- -Werror=all -fno-builtin -ffreestanding"
-
-
- # lz_cflags_extra="-Os -fno-stack-protector -fomit-frame-pointer -fno-unwind-tables -fno-asynchronous-unwind-tables"
-
- pemagine_so_ldflags="-shared --image-base=0x560000 \
- --entry "$lz_default_underscore"pe_lib_entry_point@12 \
- --exclude-all-symbols \
- --output-def $pemagine_so_def_name \
- --out-implib $pemagine_implib_name \
- --subsystem=windows"
-
- lz_cflags_include_common="-I$lz_project_dir/src/internal -I$lz_project_dir/include"
-
- if [ "$MIDIPIX_ROOT"x != x ]; then
- lz_cflags_include_common="$lz_cflags_include_common -I$MIDIPIX_ROOT/include"
- fi
-
- pemagine_so_obj_list=pemagine.so.objs
- pemagine_so_src_list=pemagine.so.src.lst
-
- pemagine_a_obj_list=pemagine.a.objs
- pemagine_a_src_list=pemagine.a.src.lst
-}
-
-pemagine_shared()
-{
- lz_src_dirs="src"
- lz_cflags_step="-DPE_BUILD"
-
- if ! [ "$lz_pecoff_winnt"x = yesx ]; then
- lz_cflags_step="$lz_cflags_step -fpic"
- fi
-
- lz_compile "$pemagine_so_obj_list" "$pemagine_so_src_list" "$lz_dyobj_ext"
- lz_link "$pemagine_so_obj_list" "$pemagine_so_src_list" "$pemagine_so_name" \
- "$pemagine_so_ldflags" \
- ''
-}
-
-
-pemagine_static()
-{
- lz_src_dirs="src"
-
- lz_compile "$pemagine_a_obj_list" "$pemagine_a_src_list" "$lz_stobj_ext"
- lz_archive "$pemagine_a_obj_list" "$pemagine_a_src_list" "$pemagine_a_name"
-}
-
-
-pemagine_xstatic()
-{
- lz_src_dirs="src"
- lz_cflags_step="-DPE_BUILD"
-
- lz_compile "$pemagine_a_obj_list" "$pemagine_a_src_list" "$lz_stobj_ext"
- lz_archive "$pemagine_a_obj_list" "$pemagine_a_src_list" "$pemagine_a_name"
-}
-
-
-pemagine_install_headers()
-{
- lz_pushd $lz_project_dir
-
- cp -r -t $lz_prefix/include include/$lz_project_name
-
- lz_popd
-}
-
-
-pemagine_install_shared()
-{
- lz_pushd $lz_build_dir/lib
-
- cp -t $lz_prefix/lib $pemagine_lib_name$lz_dylib_ext
- cp -t $lz_prefix/lib $pemagine_lib_name$lz_implib_ext
-
- lz_popd
-}
-
-
-pemagine_install_static()
-{
- lz_pushd $lz_build_dir/lib
-
- cp -t $lz_prefix/lib $pemagine_lib_name$lz_stlib_ext
-
- lz_popd
-}
-
-
-pemagine_install_xstatic()
-{
- lz_step pemagine_xstatic
- lz_step pemagine_install_static
-}
-
-pemagine_all()
-{
- lz_step pemagine_shared
- lz_step pemagine_static
-}
-
-
-pemagine_install()
-{
- lz_step pemagine_all
- lz_step pemagine_install_shared
- lz_step pemagine_install_static
- lz_step pemagine_install_headers
-}