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


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

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

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

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

1.5
date	2005.03.31.03.11.05;	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.27.44;	author phi;	state Exp;
branches;
next	1.2;

1.2
date	2005.02.27.20.33.17;	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.9
log
@new Pause class.
@
text
@INCLUDES = -I /usr/include/sdk-3.5
CPPFLAGS = -g -O2 -Wall $(INCLUDES)

OUT = ../libcore.a

OBJ = \
      	Distance.o \
	Factor.o \
	Instruction.o \
	Interval.o \
	Number.o \
	Odo.o \
	Pause.o \
	Speed.o \
	Speedo.o \
	Time.o \

default: all
all: $(OUT)

$(OUT): $(OBJ)
	ar rcs $(OUT) $(OBJ)

clean:
	rm -rf $(OBJ) $(OUT)
@


1.8
log
@Remove inlines to avoid gcc cross-segment call bug.
@
text
@d13 1
@


1.7
log
@New speedometer class, inheriting from odometer class.
@
text
@d9 1
@


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


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


1.4
log
@New Interval class which can represent negative times
@
text
@d7 2
d11 1
@


1.3
log
@Replace sys/types with new Types.hh, which defines common types in terms of PalmOS types.
@
text
@d7 1
@


1.2
log
@use and clean up for -Wall
@
text
@d1 2
a2 1
CPPFLAGS = -g -O2 -Wall
@


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
@

