Makefile.Debug 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. #############################################################################
  2. # Makefile for building: ImageLabeler
  3. # Generated by qmake (2.01a) (Qt 4.7.1) on: Tue Oct 11 14:53:52 2011
  4. # Project: ImageLabeler.pro
  5. # Template: app
  6. #############################################################################
  7. ####### Compiler, tools and options
  8. CC = gcc
  9. CXX = g++
  10. DEFINES = -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED
  11. CFLAGS = -m64 -pipe -g -Wall -W -D_REENTRANT $(DEFINES)
  12. CXXFLAGS = -m64 -pipe -g -Wall -W -D_REENTRANT $(DEFINES)
  13. INCPATH = -I/usr/share/qt4/mkspecs/default -I. -I/usr/include/QtCore -I/usr/include/QtGui -I/usr/include/QtXml -I/usr/include -Idebug
  14. LINK = g++
  15. LFLAGS = -m64
  16. LIBS = $(SUBLIBS) -L/usr/lib64 -lQtXml -L/usr/lib64 -lQtGui -L/usr/X11R6/lib64 -lQtCore -lpthread
  17. AR = ar cqs
  18. RANLIB =
  19. QMAKE = /usr/bin/qmake
  20. TAR = tar -cf
  21. COMPRESS = gzip -9f
  22. COPY = cp -f
  23. SED = sed
  24. COPY_FILE = $(COPY)
  25. COPY_DIR = $(COPY) -r
  26. STRIP = strip
  27. INSTALL_FILE = install -m 644 -p
  28. INSTALL_DIR = $(COPY_DIR)
  29. INSTALL_PROGRAM = install -m 755 -p
  30. DEL_FILE = rm -f
  31. SYMLINK = ln -f -s
  32. DEL_DIR = rmdir
  33. MOVE = mv -f
  34. CHK_DIR_EXISTS= test -d
  35. MKDIR = mkdir -p
  36. ####### Output directory
  37. OBJECTS_DIR = debug/
  38. ####### Files
  39. SOURCES = OptionsForm.cpp \
  40. ImageDescriptionForm.cpp \
  41. functions.cpp \
  42. ImageHolder.cpp \
  43. ImageLabeler.cpp \
  44. main.cpp debug/moc_OptionsForm.cpp \
  45. debug/moc_ImageDescriptionForm.cpp \
  46. debug/moc_ImageHolder.cpp \
  47. debug/moc_ImageLabeler.cpp
  48. OBJECTS = debug/OptionsForm.o \
  49. debug/ImageDescriptionForm.o \
  50. debug/functions.o \
  51. debug/ImageHolder.o \
  52. debug/ImageLabeler.o \
  53. debug/main.o \
  54. debug/moc_OptionsForm.o \
  55. debug/moc_ImageDescriptionForm.o \
  56. debug/moc_ImageHolder.o \
  57. debug/moc_ImageLabeler.o
  58. DIST = /usr/share/qt4/mkspecs/common/g++.conf \
  59. /usr/share/qt4/mkspecs/common/unix.conf \
  60. /usr/share/qt4/mkspecs/common/linux.conf \
  61. /usr/share/qt4/mkspecs/qconfig.pri \
  62. /usr/share/qt4/mkspecs/modules/qt_phonon.pri \
  63. /usr/share/qt4/mkspecs/modules/qt_webkit_version.pri \
  64. /usr/share/qt4/mkspecs/features/qt_functions.prf \
  65. /usr/share/qt4/mkspecs/features/qt_config.prf \
  66. /usr/share/qt4/mkspecs/features/exclusive_builds.prf \
  67. /usr/share/qt4/mkspecs/features/default_pre.prf \
  68. /usr/share/qt4/mkspecs/features/debug.prf \
  69. /usr/share/qt4/mkspecs/features/debug_and_release.prf \
  70. /usr/share/qt4/mkspecs/features/default_post.prf \
  71. /usr/share/qt4/mkspecs/features/build_pass.prf \
  72. /usr/share/qt4/mkspecs/features/warn_on.prf \
  73. /usr/share/qt4/mkspecs/features/qt.prf \
  74. /usr/share/qt4/mkspecs/features/unix/thread.prf \
  75. /usr/share/qt4/mkspecs/features/moc.prf \
  76. /usr/share/qt4/mkspecs/features/resources.prf \
  77. /usr/share/qt4/mkspecs/features/uic.prf \
  78. /usr/share/qt4/mkspecs/features/yacc.prf \
  79. /usr/share/qt4/mkspecs/features/lex.prf \
  80. /usr/share/qt4/mkspecs/features/include_source_dir.prf \
  81. ImageLabeler.pro
  82. QMAKE_TARGET = ImageLabeler
  83. DESTDIR =
  84. TARGET = ImageLabeler
  85. first: all
  86. ####### Implicit rules
  87. .SUFFIXES: .o .c .cpp .cc .cxx .C
  88. .cpp.o:
  89. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
  90. .cc.o:
  91. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
  92. .cxx.o:
  93. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
  94. .C.o:
  95. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
  96. .c.o:
  97. $(CC) -c $(CFLAGS) $(INCPATH) -o "$@" "$<"
  98. ####### Build rules
  99. all: Makefile.Debug $(TARGET)
  100. $(TARGET): $(OBJECTS)
  101. $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
  102. qmake: FORCE
  103. @$(QMAKE) CONFIG+=debug_and_release -o Makefile.Debug ImageLabeler.pro
  104. dist:
  105. @$(CHK_DIR_EXISTS) debug/ImageLabeler1.0.0 || $(MKDIR) debug/ImageLabeler1.0.0
  106. $(COPY_FILE) --parents $(SOURCES) $(DIST) debug/ImageLabeler1.0.0/ && $(COPY_FILE) --parents OptionsForm.h ImageDescriptionForm.h functions.h ImageHolder.h ImageLabeler.h debug/ImageLabeler1.0.0/ && $(COPY_FILE) --parents OptionsForm.cpp ImageDescriptionForm.cpp functions.cpp ImageHolder.cpp ImageLabeler.cpp main.cpp debug/ImageLabeler1.0.0/ && (cd `dirname debug/ImageLabeler1.0.0` && $(TAR) ImageLabeler1.0.0.tar ImageLabeler1.0.0 && $(COMPRESS) ImageLabeler1.0.0.tar) && $(MOVE) `dirname debug/ImageLabeler1.0.0`/ImageLabeler1.0.0.tar.gz . && $(DEL_FILE) -r debug/ImageLabeler1.0.0
  107. clean:compiler_clean
  108. -$(DEL_FILE) $(OBJECTS)
  109. -$(DEL_FILE) *~ core *.core
  110. ####### Sub-libraries
  111. distclean: clean
  112. -$(DEL_FILE) $(TARGET)
  113. -$(DEL_FILE) Makefile.Debug
  114. check: first
  115. mocclean: compiler_moc_header_clean compiler_moc_source_clean
  116. mocables: compiler_moc_header_make_all compiler_moc_source_make_all
  117. compiler_moc_header_make_all: debug/moc_OptionsForm.cpp debug/moc_ImageDescriptionForm.cpp debug/moc_ImageHolder.cpp debug/moc_ImageLabeler.cpp
  118. compiler_moc_header_clean:
  119. -$(DEL_FILE) debug/moc_OptionsForm.cpp debug/moc_ImageDescriptionForm.cpp debug/moc_ImageHolder.cpp debug/moc_ImageLabeler.cpp
  120. debug/moc_OptionsForm.cpp: OptionsForm.h
  121. /usr/bin/moc $(DEFINES) $(INCPATH) OptionsForm.h -o debug/moc_OptionsForm.cpp
  122. debug/moc_ImageDescriptionForm.cpp: ImageDescriptionForm.h
  123. /usr/bin/moc $(DEFINES) $(INCPATH) ImageDescriptionForm.h -o debug/moc_ImageDescriptionForm.cpp
  124. debug/moc_ImageHolder.cpp: ImageHolder.h
  125. /usr/bin/moc $(DEFINES) $(INCPATH) ImageHolder.h -o debug/moc_ImageHolder.cpp
  126. debug/moc_ImageLabeler.cpp: ImageHolder.h \
  127. ImageDescriptionForm.h \
  128. ImageLabeler.h
  129. /usr/bin/moc $(DEFINES) $(INCPATH) ImageLabeler.h -o debug/moc_ImageLabeler.cpp
  130. compiler_rcc_make_all:
  131. compiler_rcc_clean:
  132. compiler_image_collection_make_all: qmake_image_collection.cpp
  133. compiler_image_collection_clean:
  134. -$(DEL_FILE) qmake_image_collection.cpp
  135. compiler_moc_source_make_all:
  136. compiler_moc_source_clean:
  137. compiler_uic_make_all:
  138. compiler_uic_clean:
  139. compiler_yacc_decl_make_all:
  140. compiler_yacc_decl_clean:
  141. compiler_yacc_impl_make_all:
  142. compiler_yacc_impl_clean:
  143. compiler_lex_make_all:
  144. compiler_lex_clean:
  145. compiler_clean: compiler_moc_header_clean
  146. ####### Compile
  147. debug/OptionsForm.o: OptionsForm.cpp OptionsForm.h
  148. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/OptionsForm.o OptionsForm.cpp
  149. debug/ImageDescriptionForm.o: ImageDescriptionForm.cpp ImageDescriptionForm.h
  150. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/ImageDescriptionForm.o ImageDescriptionForm.cpp
  151. debug/functions.o: functions.cpp functions.h
  152. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/functions.o functions.cpp
  153. debug/ImageHolder.o: ImageHolder.cpp ImageHolder.h \
  154. functions.h
  155. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/ImageHolder.o ImageHolder.cpp
  156. debug/ImageLabeler.o: ImageLabeler.cpp ImageLabeler.h \
  157. ImageHolder.h \
  158. ImageDescriptionForm.h \
  159. functions.h
  160. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/ImageLabeler.o ImageLabeler.cpp
  161. debug/main.o: main.cpp ImageLabeler.h \
  162. ImageHolder.h \
  163. ImageDescriptionForm.h
  164. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/main.o main.cpp
  165. debug/moc_OptionsForm.o: debug/moc_OptionsForm.cpp
  166. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/moc_OptionsForm.o debug/moc_OptionsForm.cpp
  167. debug/moc_ImageDescriptionForm.o: debug/moc_ImageDescriptionForm.cpp
  168. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/moc_ImageDescriptionForm.o debug/moc_ImageDescriptionForm.cpp
  169. debug/moc_ImageHolder.o: debug/moc_ImageHolder.cpp
  170. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/moc_ImageHolder.o debug/moc_ImageHolder.cpp
  171. debug/moc_ImageLabeler.o: debug/moc_ImageLabeler.cpp
  172. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/moc_ImageLabeler.o debug/moc_ImageLabeler.cpp
  173. ####### Install
  174. install: FORCE
  175. uninstall: FORCE
  176. FORCE: