Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebarify. #1

Merged
merged 1 commit into from Jun 30, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -5,5 +5,6 @@
*.pdf
*.pem
*.png
ebin/
test/*
work/*
2 changes: 0 additions & 2 deletions Emakefile

This file was deleted.

16 changes: 16 additions & 0 deletions Makefile
@@ -0,0 +1,16 @@
.PHONY: \
all \
compile \
clean \
dialyze

all: clean compile dialyze

compile:
@rebar compile

clean:
@rebar clean

dialyze:
@dialyzer ebin/*.beam
9 changes: 0 additions & 9 deletions ebin/qrcode.app

This file was deleted.

11 changes: 11 additions & 0 deletions src/qrcode.app.src
@@ -0,0 +1,11 @@
{application, qrcode,
[
{description, "QRCode Encoder"},
{vsn, "1.0.1"},
{registered, []},
{applications, [
kernel,
stdlib
]},
{env, []}
]}.