diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-04-30 15:09:46 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-04-30 15:09:46 +0200 |
commit | 8711d9517fad67bb05203e4a303082acec1bfcc1 (patch) | |
tree | 2ed46697926bf9d0fdd6a93f91af57979c1e20d9 | |
parent | f51e3df3b9061a1fa3c984349c8216c50c4f8442 (diff) |
Document so_specs
-rw-r--r-- | rebar.config.sample | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rebar.config.sample b/rebar.config.sample index 62990cf..aec1b6c 100644 --- a/rebar.config.sample +++ b/rebar.config.sample @@ -45,6 +45,10 @@ %% Custom name of the port driver .so file. Defaults to `<Application>_drv.so'. {so_name, "driver.so"}. +%% so_specs - useful for building multiple *.so files +%% from one or more object files +{so_specs, [{"priv/so_name.so", ["c_src/object_file_name.o"]}]}. + %% == LFE Compiler == %% LFE files to compile before the rest |