head	1.13;
access;
symbols;
locks; strict;
comment	@# @;


1.13
date	2006.04.22.02.26.04;	author phi;	state Exp;
branches;
next	1.12;

1.12
date	2006.04.09.22.48.15;	author phi;	state Exp;
branches;
next	1.11;

1.11
date	2005.10.11.05.21.16;	author phi;	state Exp;
branches;
next	1.10;

1.10
date	2005.07.08.22.31.15;	author phi;	state Exp;
branches;
next	1.9;

1.9
date	2005.06.17.17.09.17;	author phi;	state Exp;
branches;
next	1.8;

1.8
date	2005.03.31.05.59.13;	author phi;	state Exp;
branches;
next	1.7;

1.7
date	2005.03.31.03.11.05;	author phi;	state Exp;
branches;
next	1.6;

1.6
date	2005.03.27.16.28.56;	author phi;	state Exp;
branches;
next	1.5;

1.5
date	2005.03.26.06.46.12;	author phi;	state Exp;
branches;
next	1.4;

1.4
date	2005.03.13.16.36.32;	author phi;	state Exp;
branches;
next	1.3;

1.3
date	2005.03.01.03.28.33;	author phi;	state Exp;
branches;
next	1.2;

1.2
date	2005.02.27.20.33.50;	author phi;	state Exp;
branches;
next	1.1;

1.1
date	2005.02.23.05.24.04;	author phi;	state Exp;
branches;
next	;


desc
@@


1.13
log
@new Pause class.
@
text
@INCLUDES = -I . -I /usr/include/sdk-3.5
CPPFLAGS = -g -O2 -Wall $(INCLUDES)

TESTOBJS = \
	main.o \
	DistanceTest.o \
	DummyTest.o \
	FactorTest.o \
	InstructionTest.o \
	IntervalTest.o \
	NumberTest.o \
	OdoTest.o \
	PauseTest.o \
	SpeedTest.o \
	SpeedoTest.o \
	TimeTest.o \
	TypesTest.o \

LIBS = \
	/usr/lib/libcppunit.a \
	/usr/lib/libstdc++.a \
	../libcore.a \

default: all
all: TStest /dev/null
	./TStest

TStest: $(TESTOBJS) ../libcore.a
	$(CC) -L/usr/lib -mconsole -mcygwin $(TESTOBJS) $(LIBS) -o TStest

clean:
	rm -rf *.o TStest.exe
@


1.12
log
@new split() methods for computing new Instructions from intervals or delta mileages.
@
text
@d13 1
@


1.11
log
@Remove unused Table.
@
text
@d9 1
@


1.10
log
@New speedometer class, inheriting from odometer class.
@
text
@a13 2
	Table.o \
	TableTest.o \
a24 3

Table.o: ../Palm/Table.cc
	$(CC) $(CPPFLAGS) -c $< -o $@@
@


1.9
log
@New odometer class and unit test.
@
text
@d13 1
@


1.8
log
@add operator+ and operator- to Distance.
@
text
@d11 1
@


1.7
log
@new Speed, Distance, and Factor types, with all associated maps and tests
@
text
@d6 1
@


1.6
log
@Build x86-target objects properly rather than by inclusion.
Separate out stubs into their corresponding categories.
@
text
@d7 1
d10 1
@


1.5
log
@Unit test for Table class
fix minor bug in Table::find()
Beginnings of test infrastructure for classes which reference PalmOS system calls
@
text
@d1 1
a1 1
INCLUDES = -I /usr/include/sdk-3.5
d9 1
d22 3
@


1.4
log
@New Interval class which can represent negative times
@
text
@d9 1
@


1.3
log
@Add include paths to support use of new Types.hh, which defines common types in terms of PalmOS types.
@
text
@d7 1
@


1.2
log
@use -Wall correctly
@
text
@d1 2
a2 1
CPPFLAGS = -g -O2 -Wall
d9 1
@


1.1
log
@make infrastructure
cppunit testing infrastructure
Number class and comprehensive unit test suite
Time class header and one failing unit test
@
text
@d1 1
a1 2
CC = gcc
CFLAGS = -g -O2 -Wall
@

