public
Description: Erlang web application framework
Homepage: http://getsmak.com/
Clone URL: git://github.com/skarab/smak.git
smak / Emakefile
100644 17 lines (14 sloc) 0.255 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
% -*- mode: erlang -*-
 
% Compile ewgi dependency
{["deps/ewgi/src/*"],
 [{i, "deps/ewgi/include"},
  {outdir, "ebin"},
  debug_info]
}.
 
% Compile smak files
{["src/*"],
 [{i, "include"},
  {i, "deps/ewgi/include"},
  {outdir, "ebin"},
  debug_info]
}.