comparison makefile @ 6:99d612849255

v0.3
author pyon@macmini
date Sat, 08 Oct 2011 17:00:33 +0900
parents a505f7417742
children
comparison
equal deleted inserted replaced
5:3b734fd6ee2b 6:99d612849255
1 # 1 #
2 # Makefile for wxWidgets Application 2 # Makefile for wxWidgets Application
3 # Last Change: 06-Oct-2011. 3 # Last Change: 08-Oct-2011.
4 # by Takayuki Mutoh 4 # by Takayuki Mutoh
5 # 5 #
6 6
7 # Program Name 7 # Program Name
8 PROGNAME = mover 8 PROGNAME = mover
96 $(PROGNAME): $(OBJ) 96 $(PROGNAME): $(OBJ)
97 $(CXX) $^ -o $@ $(LIBS) 97 $(CXX) $^ -o $@ $(LIBS)
98 endif 98 endif
99 99
100 100
101 $(OBJDIR)/main.o: main.cpp main.h myframe.h common.h 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 marksheet.h symbol.h common.h 105 $(OBJDIR)/myframe.o: myframe.cpp myframe.h marksheet.h symbol.h common.h
106 $(CXX) -c $< -o $@ $(CPPFLAGS) 106 $(CXX) -c $< -o $@ $(CPPFLAGS)