added: Date structure -- represents year, month, day, hour, min, sec

with O(1) algorithm for converting from time_t (seconds from Unix epoch)


git-svn-id: svn://ttmath.org/publicrep/pikotools/trunk@405 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2012-05-05 15:08:04 +00:00
parent 19da401bb0
commit 3280568594
12 changed files with 734 additions and 14 deletions

View File

@@ -13,7 +13,10 @@ export CXX
export CXXFLAGS
all: space mainparser utf8
all: space mainparser utf8 date
space: FORCE
@cd space ; $(MAKE) -e
@@ -24,6 +27,12 @@ mainparser: FORCE
utf8: FORCE
@cd utf8 ; $(MAKE) -e
date: FORCE
@cd date ; $(MAKE) -e
FORCE:
@@ -32,8 +41,10 @@ clean:
@cd space ; $(MAKE) -e clean
@cd mainparser ; $(MAKE) -e clean
@cd utf8 ; $(MAKE) -e clean
@cd date ; $(MAKE) -e clean
depend:
@cd space ; $(MAKE) -e depend
@cd mainparser ; $(MAKE) -e depend
@cd utf8 ; $(MAKE) -e depend
@cd date ; $(MAKE) -e depend