aboutsummaryrefslogblamecommitdiff
path: root/src/configure.erl
blob: 30c41aa15971a1076b62647904b88d4ac648576c (plain) (tree)



















                                                                         
%%%----------------------------------------------------------------------
%%% File    : configure.erl
%%% Author  : Alexey Shchepin <alexey@sevcom.net>
%%% Purpose : 
%%% Created : 27 Jan 2003 by Alexey Shchepin <alexey@sevcom.net>
%%% Id      : $Id$
%%%----------------------------------------------------------------------

-module(configure).
-author('alexey@sevcom.net').
-vsn('$Revision$ ').

-export([start/0]).

start() ->
    EIDirS = "EI_DIR = " ++ code:lib_dir("erl_interface") ++ "\n",
    file:write_file("Makefile.inc", list_to_binary(EIDirS)),
    halt().