Packages
A pretty good Kubo IPFS RPC API client for Elixir.
Retired package: Deprecated - Replaced by ex_ipfs
Current section
Files
Jump to
Current section
Files
src/compile.escript
#!/usr/bin/env escript
%% -*- erlang -*-
%%! -escript main main/1
main([Target]) ->
case Target of
"parser" -> yecc:file('parser.yrl');
"lexer" -> leex:file('lexer.xrl');
"all" ->
leex:file('lexer.xrl'),
yecc:file('parser.yrl')
end,
halt(0).