Skip to content

Commit

Permalink
add Makefile to test/
Browse files Browse the repository at this point in the history
  • Loading branch information
msvoboda-ra-rockwell-com authored and Richard Carlsson committed May 19, 2012
1 parent 80c4049 commit da26c90
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/Makefile
@@ -0,0 +1,12 @@
MODULES=gettext_demo

EBIN_FILES=$(MODULES:%=../ebin/%.beam)
ERLC_FLAGS+=+debug_info

gettext: clean $(EBIN_FILES)

clean:
@(rm -f $(EBIN_FILES))

../ebin/%.beam: %.erl $(INCLUDES) Makefile
@(erlc -pa ../ebin -o ../ebin $(ERLC_FLAGS) $<)

0 comments on commit da26c90

Please sign in to comment.