Mercurial > mercurial > hgweb_mover2.cgi
comparison makefile @ 18:f3463815c2c9 v2.2dev
editing dirview.
| author | pyon@macmini |
|---|---|
| date | Sun, 23 Oct 2011 21:42:01 +0900 |
| parents | 9b0840b0be7e |
| children | d10eafafe31f |
comparison
equal
deleted
inserted
replaced
| 15:cd55a74d5e83 | 18:f3463815c2c9 |
|---|---|
| 1 # | 1 # |
| 2 # Makefile for wxWidgets Application | 2 # Makefile for wxWidgets Application |
| 3 # Last Change: 22-Oct-2011. | 3 # Last Change: 23-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 |
| 72 | 72 |
| 73 endif | 73 endif |
| 74 | 74 |
| 75 OBJ = $(OBJDIR)/main.o \ | 75 OBJ = $(OBJDIR)/main.o \ |
| 76 $(OBJDIR)/myframe.o \ | 76 $(OBJDIR)/myframe.o \ |
| 77 $(OBJDIR)/param.o | 77 $(OBJDIR)/param.o \ |
| 78 $(OBJDIR)/dirview.o | |
| 78 ifdef COMSPEC | 79 ifdef COMSPEC |
| 79 OBJMSW = $(OBJ) $(OBJDIR)/sample_rc.o | 80 OBJMSW = $(OBJ) $(OBJDIR)/sample_rc.o |
| 80 endif | 81 endif |
| 81 | 82 |
| 82 # user include | 83 # user include |
| 96 $(PROGNAME): $(OBJ) | 97 $(PROGNAME): $(OBJ) |
| 97 $(CXX) $^ -o $@ $(LIBS) | 98 $(CXX) $^ -o $@ $(LIBS) |
| 98 endif | 99 endif |
| 99 | 100 |
| 100 | 101 |
| 101 $(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 |
| 102 -mkdir -p $(OBJDIR) | 103 -mkdir -p $(OBJDIR) |
| 103 $(CXX) -c $< -o $@ $(CPPFLAGS) | 104 $(CXX) -c $< -o $@ $(CPPFLAGS) |
| 104 | 105 |
| 105 $(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h marksheet.h dndfile.h | 106 $(OBJDIR)/myframe.o: myframe.cpp myframe.h common.h main.h marksheet.h dndfile.h dirview.h |
| 106 $(CXX) -c $< -o $@ $(CPPFLAGS) | 107 $(CXX) -c $< -o $@ $(CPPFLAGS) |
| 107 | 108 |
| 108 $(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) | |
| 111 | |
| 112 $(OBJDIR)/dirview.o: dirview.cpp dirview.h common.h | |
| 109 $(CXX) -c $< -o $@ $(CPPFLAGS) | 113 $(CXX) -c $< -o $@ $(CPPFLAGS) |
| 110 | 114 |
| 111 testtune: testtune.cpp | 115 testtune: testtune.cpp |
| 112 $(CXX) $< -o $@ $(CPPFLAGS) $(LIBS) | 116 $(CXX) $< -o $@ $(CPPFLAGS) $(LIBS) |
| 113 | 117 |
