Integration - TDB

- Renamed TDB2 to TDB.
- Integration of new code complete.
This commit is contained in:
Paul Beckingham 2009-06-14 18:19:00 -04:00
parent 53d0d1cbac
commit 80bb9f0a18
7 changed files with 31 additions and 32 deletions

View file

@ -1,9 +1,9 @@
PROJECT = t2.t tdb.t date.t duration.t t.benchmark.t text.t autocomplete.t \
PROJECT = t.t tdb.t date.t duration.t t.benchmark.t text.t autocomplete.t \
config.t seq.t att.t stringtable.t record.t nibbler.t subst.t filt.t \
cmd.t
CFLAGS = -I. -I.. -Wall -pedantic -ggdb3 -fno-rtti
LFLAGS = -L/usr/local/lib -lncurses
OBJECTS = ../TDB2.o ../Task.o ../valid.o ../text.o ../Date.o ../Table.o \
OBJECTS = ../TDB.o ../Task.o ../valid.o ../text.o ../Date.o ../Table.o \
../Duration.o ../util.o ../Config.o ../Sequence.o ../Att.o ../Cmd.o \
../Record.o ../StringTable.o ../Subst.o ../Nibbler.o ../Location.o \
../Filter.o ../Context.o ../Keymap.o ../command.o ../interactive.o \
@ -23,8 +23,8 @@ clean:
.cpp.o:
g++ -c $(CFLAGS) $<
t2.t: t2.t.o $(OBJECTS) test.o
g++ t2.t.o $(OBJECTS) test.o $(LFLAGS) -o t2.t
t.t: t.t.o $(OBJECTS) test.o
g++ t.t.o $(OBJECTS) test.o $(LFLAGS) -o t.t
tdb.t: tdb.t.o $(OBJECTS) test.o
g++ tdb.t.o $(OBJECTS) test.o $(LFLAGS) -o tdb.t