1、构建目录结构
我这示例中,项目文件夹为bank1
ebin目录:存放编译出来的beam文件
include目录:存放hrl文件
src目录:存放erl源文件
2、创建Emakefile文件
编译时,编译器会根据Emakefile文件做相应处理
{ [ 'src/*' %% 指定erl源文件目录 ] ,[ debug_info ,{i, "include"} %% 指定include文件夹 ,{outdir, "ebin"} %% 指定编译出来的beam文件存放目录 ] }.
2、编写编译脚本make.bat
erl -s make all -s c q pause
设置-s启动参数,
-s make all相当于erlang shell里执行make:all()进行编译
-s c q相当于erlang shell里执行c:q()退出erlang shell
3、编写启动函数
文件名为bank.erl
-module(bank). -export([start/0]). start() -> application:start(bank).
把bank.erl文件放在src目录下
3、编写启动脚本
@echo off start werl -pa ebin -s bank exit
脚本中的start为bat命令,用来启动一个独立窗口执行werl
-pa ebin表示把bank1/ebin路径添加到erlang的搜索路径中
-s bank表示启动erlang shell后执行bank:start()
4、运行make.bat
5、运行start.bat
看到输出:
%% [<0.34.0>bank_app:10] Start bank_app ...
证明名为bank的application已经启动了
6、示例代码下载
地址:http://download.csdn.net/detail/u011471961/8367873
时间: 2024-11-04 21:22:17