Skip to content

Commit

Permalink
Skip import if include_fun returns undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesaimonetti committed Apr 22, 2024
1 parent 583f4e3 commit ed29954
Show file tree
Hide file tree
Showing 2 changed files with 639 additions and 628 deletions.
16 changes: 9 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
APPLICATION := erlsom

REBAR ?= rebar3

ERL := erl
EPATH := -pa ebin
TEST_EPATH := -pa .eunit
Expand All @@ -14,25 +16,25 @@ APPS=kernel stdlib
all: compile

compile:
@./rebar compile
@$(REBAR) compile

doc:
@./rebar doc
@$(REBAR) doc

clean:
@./rebar clean
@$(REBAR) clean

build-plt: compile
@./rebar build-plt
@$(REBAR) build-plt

check-plt: compile
@./rebar check-plt
@$(REBAR) check-plt

dialyze:
@./rebar dialyze
@$(REBAR) dialyze

eunit:
@./rebar eunit
@$(REBAR) eunit

shell: compile
$(ERL) -sname $(APPLICATION) $(EPATH)
Expand Down
Loading

0 comments on commit ed29954

Please sign in to comment.