comparison makefile @ 9:dfa5cae8c992

small fix
author pyon@macmini
date Thu, 20 Oct 2011 07:44:56 +0900
parents 550c143ab194
children 1fda3a06c39b
comparison
equal deleted inserted replaced
8:550c143ab194 9:dfa5cae8c992
1 # 1 #
2 # Makefile for wxWidgets Application 2 # Makefile for wxWidgets Application
3 # Last Change: 19-Oct-2011. 3 # Last Change: 20-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
100 100
101 $(OBJDIR)/main.o: main.cpp main.h myframe.h common.h testframe.cpp 101 $(OBJDIR)/main.o: main.cpp main.h myframe.h common.h testframe.cpp
102 -mkdir -p $(OBJDIR) 102 -mkdir -p $(OBJDIR)
103 $(CXX) -c $< -o $@ $(CPPFLAGS) 103 $(CXX) -c $< -o $@ $(CPPFLAGS)
104 104
105 $(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h marksheet.h dndfile.h 105 $(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h myutils.h dndfile.h
106 $(CXX) -c $< -o $@ $(CPPFLAGS) 106 $(CXX) -c $< -o $@ $(CPPFLAGS)
107 107
108 $(OBJDIR)/param.o: param.cpp param.h common.h main.h 108 $(OBJDIR)/param.o: param.cpp param.h common.h main.h
109 $(CXX) -c $< -o $@ $(CPPFLAGS) 109 $(CXX) -c $< -o $@ $(CPPFLAGS)
110 110