diff Makefile @ 11:dfcf8c973219

Implement Cache maker.
author pyon@macmini
date Wed, 07 May 2014 20:38:57 +0900
parents b455f2d8aac9
children 52958cd4a073
line wrap: on
line diff
--- a/Makefile	Mon Apr 28 18:14:04 2014 +0900
+++ b/Makefile	Wed May 07 20:38:57 2014 +0900
@@ -1,5 +1,5 @@
 # Makefile for wxWidgets Application
-# Last Change: 05-Feb-2014.
+# Last Change: 30-Apr-2014.
 # by Takayuki Mutoh
 #
 
@@ -41,6 +41,7 @@
 	  $(OBJDIR)/bprint.o \
 	  $(OBJDIR)/db.o \
 	  $(OBJDIR)/marksheet.o \
+	  $(OBJDIR)/cache.o \
 	  $(OBJDIR)/wxsqlite3.o
 
 ifdef COMSPEC
@@ -66,7 +67,7 @@
 	-mkdir -p $(OBJDIR)
 	$(CXX) -c $< -o $@ $(CXXFLAGS)
 
-$(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h db.h marksheet.h bprint.h
+$(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h db.h marksheet.h bprint.h cache.h preview.h kana.h hist.h
 	$(CXX) -c $< -o $@ $(CXXFLAGS)
 
 $(OBJDIR)/about.o: about.cpp about.h common.h
@@ -78,6 +79,9 @@
 $(OBJDIR)/hist.o: hist.cpp hist.h common.h
 	$(CXX) -c $< -o $@ $(CXXFLAGS)
 
+$(OBJDIR)/cache.o: cache.cpp cache.h common.h
+	$(CXX) -c $< -o $@ $(CXXFLAGS)
+
 $(OBJDIR)/index.o: index.cpp index.h common.h db.h
 	$(CXX) -c $< -o $@ $(CXXFLAGS)