# HG changeset patch # User pyon@macmini # Date 1319373721 -32400 # Node ID f3463815c2c988fb8a0c32593da5a58ea154eb79 # Parent cd55a74d5e8337d6aa1d7d8c5b93a4f4c2c690ec editing dirview. diff -r cd55a74d5e83 -r f3463815c2c9 TODO --- 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 diff -r cd55a74d5e83 -r f3463815c2c9 include/main.h --- 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 diff -r cd55a74d5e83 -r f3463815c2c9 makefile --- 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)