comparison makefile @ 20:d10eafafe31f v2.2dev

dirview delete
author pyon@macmini
date Tue, 25 Oct 2011 20:02:55 +0900
parents f3463815c2c9
children 4432aba77d6b
comparison
equal deleted inserted replaced
19:868ccd73e238 20:d10eafafe31f
1 # 1 #
2 # Makefile for wxWidgets Application 2 # Makefile for wxWidgets Application
3 # Last Change: 23-Oct-2011. 3 # Last Change: 25-Oct-2011.
4 # by Takayuki Mutoh 4 # by Takayuki Mutoh
5 # 5 #
6 6
7 # Program Name 7 # Program Name
8 PROGNAME = mover2 8 PROGNAME = mover2
101 101
102 $(OBJDIR)/main.o: main.cpp main.h myframe.h common.h cache.h 102 $(OBJDIR)/main.o: main.cpp main.h myframe.h common.h cache.h
103 -mkdir -p $(OBJDIR) 103 -mkdir -p $(OBJDIR)
104 $(CXX) -c $< -o $@ $(CPPFLAGS) 104 $(CXX) -c $< -o $@ $(CPPFLAGS)
105 105
106 $(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h marksheet.h dndfile.h dirview.h 106 $(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h marksheet.h dndfile.h
107 $(CXX) -c $< -o $@ $(CPPFLAGS) 107 $(CXX) -c $< -o $@ $(CPPFLAGS)
108 108
109 $(OBJDIR)/param.o: param.cpp param.h common.h main.h 109 $(OBJDIR)/param.o: param.cpp param.h common.h main.h
110 $(CXX) -c $< -o $@ $(CPPFLAGS) 110 $(CXX) -c $< -o $@ $(CPPFLAGS)
111 111
112 $(OBJDIR)/dirview.o: dirview.cpp dirview.h common.h 112 #$(OBJDIR)/dirview.o: dirview.cpp dirview.h common.h
113 $(CXX) -c $< -o $@ $(CPPFLAGS) 113 # $(CXX) -c $< -o $@ $(CPPFLAGS)
114 114
115 testtune: testtune.cpp 115 testtune: testtune.cpp
116 $(CXX) $< -o $@ $(CPPFLAGS) $(LIBS) 116 $(CXX) $< -o $@ $(CPPFLAGS) $(LIBS)
117 117
118 118