public
Description: Nitrogen Web Framework for Erlang
Homepage: http://nitrogenproject.com
Clone URL: git://github.com/rklophaus/nitrogen.git
Click here to lend your support to: nitrogen and make a donation at www.pledgie.com !
nitrogen / Emakefile
100644 32 lines (26 sloc) 0.551 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
% Compile Nitrogen Files.
{ './src/*', [ debug_info,
{ i, "./include" },
{ outdir, "./ebin" }
]}.
 
{ './src/*/*', [ debug_info,
{ i, "./include" },
{ outdir, "./ebin" }
]}.
 
{ './src/*/*/*', [ debug_info,
{ i, "./include" },
{ outdir, "./ebin" }
]}.
 
% Compile the Nitrogen test files
{ './test/src/*', [ debug_info,
{ i, "./include" },
{ outdir, "./test/ebin" }
]}.
 
{ './test/src/*/*', [ debug_info,
{ i, "./include" },
{ outdir, "./test/ebin" }
]}.
 
{ './test/src/*/*/*', [ debug_info,
{ i, "./include" },
{ outdir, "./test/ebin" }
]}.