updated the readme. error-tested the local_to_utc methods. light changes to the makefile

This commit is contained in:
aj
2010-11-14 01:38:23 -08:00
parent bd4e6078f2
commit 63c8a29198
4 changed files with 38 additions and 11 deletions

View File

@@ -5,7 +5,7 @@ DEBUG := -DNODEBUG -Ddebug
TEST :=
TZSET := northamerica
SHELL := /bin/bash
COMPILE := ./src/*.erl
all : clean compile
@@ -15,13 +15,14 @@ nowarn : clean compile
test : ERLC_WARNINGS := -W0
test : TEST := -DTEST
test : all
erlc $(ERLC_WARNINGS) $(TEST) -o ./ebin ./test/*.erl
erl -noshell -pa ebin -run test all -s erlang halt
test : TEST := -DTEST
test : RUN_INIT += -run test all -s erlang halt
test : COMPILE += ./test/*.erl
test : all run
compile :
erlc $(DEBUG) $(TEST) $(ERLC_WARNINGS) $(OPTIONS) -o ./ebin ./src/*.erl
erlc $(DEBUG) $(TEST) $(ERLC_WARNINGS) $(OPTIONS) -o ./ebin $(COMPILE)
-erl -noshell -pa ebin -s erldev make_app . -s erlang halt
clean :