Reorganizing UI, adding TimelineListView.

This commit is contained in:
Jonathan Bernard
2011-04-27 16:59:33 -05:00
parent 302bc9ccdd
commit f4fe5559b1
5 changed files with 70 additions and 26 deletions

View File

@ -3,22 +3,23 @@ BEAMS = $(MODS:src/%.erl=ebin/%.beam)
TEST_MODS = $(wildcard test/*.erl)
TEST_BEAMS = $(TEST_MODS:test/%.erl=test/%.beam)
TS_ROOT=/usr/lib/yaws/jdb-labs/timestamper
CWD = `pwd`
default: compile
all : compile test
compile : $(BEAMS)
compile : init $(BEAMS)
compile-test : $(TEST_BEAMS)
compile-test : init $(TEST_BEAMS)
test : start-test-server run-test stop-test-server
test-shell : compile compile-test
test-shell : compile compile-test config-yaws-dev
@echo Starting an interactive YAWS shell with test paths loaded.
@yaws -i --pa test --id test_inst
run-test : compile compile-test
run-test : compile compile-test config-yaws-dev
@erl -pa ./ebin -pa ./test -run timestamper_api_tests test -run init stop -noshell
start-test-server :