changeset 18:f3463815c2c9 v2.2dev

editing dirview.
author pyon@macmini
date Sun, 23 Oct 2011 21:42:01 +0900
parents cd55a74d5e83
children 868ccd73e238
files TODO include/main.h makefile
diffstat 3 files changed, 11 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/TODO	Sun Oct 23 21:17:55 2011 +0900
+++ b/TODO	Sun Oct 23 21:42:01 2011 +0900
@@ -7,6 +7,7 @@
 * hhs explore & file count
 * auto cache rebuild off
 * color red if guess hhsno failed
+* help
 
 ----------------------------------------------------------------------
  Memo
--- a/include/main.h	Sun Oct 23 21:17:55 2011 +0900
+++ b/include/main.h	Sun Oct 23 21:42:01 2011 +0900
@@ -1,5 +1,5 @@
 // Filename   : main.h
-// Last Change: 22-Oct-2011.
+// Last Change: 23-Oct-2011.
 //
 #include "wx/wx.h"
 #include "wx/config.h"
@@ -8,7 +8,7 @@
 #define MYAPPNAME wxT("AMover2")
 
 #define VER 2
-#define REV 1
+#define REV 2
 #define BLD 20111027
 
 // private classes
--- a/makefile	Sun Oct 23 21:17:55 2011 +0900
+++ b/makefile	Sun Oct 23 21:42:01 2011 +0900
@@ -1,6 +1,6 @@
 #
 # Makefile for wxWidgets Application
-#  Last Change: 22-Oct-2011.
+#  Last Change: 23-Oct-2011.
 #  by Takayuki Mutoh
 #
 
@@ -74,7 +74,8 @@
 
 OBJ = $(OBJDIR)/main.o \
 	  $(OBJDIR)/myframe.o \
-	  $(OBJDIR)/param.o
+	  $(OBJDIR)/param.o \
+	  $(OBJDIR)/dirview.o
 ifdef COMSPEC
 OBJMSW = $(OBJ) $(OBJDIR)/sample_rc.o
 endif
@@ -98,16 +99,19 @@
 endif
 
 
-$(OBJDIR)/main.o: main.cpp main.h myframe.h common.h  cache.h 
+$(OBJDIR)/main.o: main.cpp main.h myframe.h common.h cache.h 
 	-mkdir -p $(OBJDIR)
 	$(CXX) -c $< -o $@ $(CPPFLAGS)
 
-$(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h marksheet.h dndfile.h
+$(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h marksheet.h dndfile.h dirview.h
 	$(CXX) -c $< -o $@ $(CPPFLAGS)
 
 $(OBJDIR)/param.o: param.cpp param.h common.h main.h
 	$(CXX) -c $< -o $@ $(CPPFLAGS)
 
+$(OBJDIR)/dirview.o: dirview.cpp dirview.h common.h
+	$(CXX) -c $< -o $@ $(CPPFLAGS)
+
 testtune: testtune.cpp
 	$(CXX) $< -o $@ $(CPPFLAGS) $(LIBS)