Mercurial > mercurial > hgweb_mover2.cgi
diff makefile @ 18:f3463815c2c9 v2.2dev
editing dirview.
author | pyon@macmini |
---|---|
date | Sun, 23 Oct 2011 21:42:01 +0900 |
parents | 9b0840b0be7e |
children | d10eafafe31f |
line wrap: on
line diff
--- 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)