Skip to content

Commit

Permalink
As the ebin dir now contains the .app, we don't need to bother creati…
Browse files Browse the repository at this point in the history
…ng it.
  • Loading branch information
tonyg committed Aug 25, 2009
1 parent 3783a08 commit 70a5e33
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Makefile
Expand Up @@ -20,17 +20,14 @@ endif

all: package

$(EBIN_DIR)/%.beam: $(SOURCE_DIR)/%.erl $(EBIN_DIR) $(INCLUDES)
$(EBIN_DIR)/%.beam: $(SOURCE_DIR)/%.erl $(INCLUDES)
erlc $(ERLC_OPTS) $<

$(EBIN_DIR):
mkdir $(EBIN_DIR)

clean:
rm -f ebin/*.beam
rm -f $(TARGETS)
rm -rf $(DIST_DIR)

cleandoc:
rm -f doc/*

Expand Down

0 comments on commit 70a5e33

Please sign in to comment.