Skip to content

Commit

Permalink
- ignore apps in ebin/
Browse files Browse the repository at this point in the history
- don't try to build documentation for now as it crashes
  • Loading branch information
nupfel committed Apr 21, 2011
1 parent 0d279d8 commit 5b5496c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ebin/*.beam
ebin/*.app
doc/*.html
src/*.dump
Empty file added ebin/.keep
Empty file.
3 changes: 2 additions & 1 deletion support/include.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ EMULATOR := beam
ERL_SOURCES := $(wildcard *.erl)
ERL_HEADERS := $(wildcard *.hrl) $(wildcard ../include/*.hrl)
ERL_OBJECTS := $(ERL_SOURCES:%.erl=$(EBIN_DIR)/%.$(EMULATOR))
ERL_DOCUMENTS := $(ERL_SOURCES:%.erl=$(DOC_DIR)/%.html)
#ERL_DOCUMENTS := $(ERL_SOURCES:%.erl=$(DOC_DIR)/%.html)
ERL_DOCUMENTS :=
ERL_OBJECTS_LOCAL := $(ERL_SOURCES:%.erl=./%.$(EMULATOR))
APP_FILES := $(wildcard *.app)
EBIN_FILES = $(ERL_OBJECTS) $(ERL_DOCUMENTS) $(APP_FILES:%.app=../ebin/%.app)
Expand Down

0 comments on commit 5b5496c

Please sign in to comment.