[efc3cb] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
[5079a0] | 4 | SUBDIRS = Actions UIElements
|
---|
| 5 |
|
---|
[0a4f7f] | 6 | # this includes source files that need to be present at multiple points
|
---|
[efc3cb] | 7 | HELPERSOURCE = \
|
---|
| 8 | Helpers/Assert.cpp \
|
---|
| 9 | Helpers/MemDebug.cpp
|
---|
[0a4f7f] | 10 |
|
---|
[efc3cb] | 11 | ATOMSOURCE = \
|
---|
| 12 | atom.cpp \
|
---|
| 13 | atom_atominfo.cpp \
|
---|
| 14 | atom_bondedparticle.cpp \
|
---|
| 15 | atom_bondedparticleinfo.cpp \
|
---|
| 16 | atom_graphnode.cpp \
|
---|
| 17 | atom_graphnodeinfo.cpp \
|
---|
| 18 | atom_particleinfo.cpp \
|
---|
| 19 | atom_trajectoryparticle.cpp \
|
---|
| 20 | atom_trajectoryparticleinfo.cpp
|
---|
| 21 | ATOMHEADER = \
|
---|
| 22 | atom.hpp \
|
---|
| 23 | atom_atominfo.hpp \
|
---|
| 24 | atom_bondedparticle.hpp \
|
---|
| 25 | atom_bondedparticleinfo.hpp \
|
---|
| 26 | atom_graphnode.hpp \
|
---|
| 27 | atom_graphnodeinfo.hpp \
|
---|
| 28 | atom_particleinfo.hpp \
|
---|
| 29 | atom_trajectoryparticle.hpp \
|
---|
| 30 | atom_trajectoryparticleinfo.hpp
|
---|
| 31 |
|
---|
| 32 | LINALGSOURCE = \
|
---|
| 33 | ${HELPERSOURCE} \
|
---|
| 34 | gslmatrix.cpp \
|
---|
| 35 | gslvector.cpp \
|
---|
| 36 | linearsystemofequations.cpp \
|
---|
| 37 | Space.cpp \
|
---|
| 38 | vector.cpp
|
---|
[0a4f7f] | 39 |
|
---|
[325390] | 40 | LINALGHEADER = \
|
---|
| 41 | gslmatrix.hpp \
|
---|
[efc3cb] | 42 | gslvector.hpp \
|
---|
| 43 | linearsystemofequations.hpp \
|
---|
| 44 | Space.hpp \
|
---|
| 45 | vector.hpp
|
---|
[0a4f7f] | 46 |
|
---|
[efc3cb] | 47 | ANALYSISSOURCE = \
|
---|
| 48 | analysis_bonds.cpp \
|
---|
| 49 | analysis_correlation.cpp
|
---|
| 50 | ANALYSISHEADER = \
|
---|
| 51 | analysis_bonds.hpp \
|
---|
| 52 | analysis_correlation.hpp
|
---|
[96c961] | 53 |
|
---|
[5079a0] | 54 | ACTIONSSOURCE = \
|
---|
| 55 | Actions/Action.cpp \
|
---|
[efc3cb] | 56 | Actions/ActionHistory.cpp \
|
---|
| 57 | Actions/ActionRegistry.cpp \
|
---|
| 58 | Actions/ActionSequence.cpp \
|
---|
| 59 | Actions/ErrorAction.cpp \
|
---|
| 60 | Actions/MakroAction.cpp \
|
---|
| 61 | Actions/ManipulateAtomsProcess.cpp \
|
---|
| 62 | Actions/MethodAction.cpp \
|
---|
| 63 | Actions/Process.cpp
|
---|
| 64 |
|
---|
[5079a0] | 65 | ACTIONSHEADER = \
|
---|
| 66 | Actions/Action.hpp \
|
---|
[efc3cb] | 67 | Actions/ActionHistory.hpp \
|
---|
| 68 | Actions/ActionRegistry.hpp \
|
---|
| 69 | Actions/ActionSequence.hpp \
|
---|
| 70 | Actions/Calculation.hpp \
|
---|
| 71 | Actions/Calculation_impl.hpp \
|
---|
| 72 | Actions/ErrorAction.hpp \
|
---|
| 73 | Actions/MakroAction.hpp \
|
---|
| 74 | Actions/ManipulateAtomsProcess.hpp \
|
---|
[97ebf8] | 75 | Actions/MapOfActions.hpp \
|
---|
[efc3cb] | 76 | Actions/MethodAction.hpp \
|
---|
| 77 | Actions/Process.hpp
|
---|
[456341] | 78 |
|
---|
[06300d] | 79 | EXCEPTIONSOURCE = \
|
---|
| 80 | Exceptions/CustomException.cpp \
|
---|
| 81 | Exceptions/LinearDependenceException.cpp \
|
---|
| 82 | Exceptions/MathException.cpp \
|
---|
| 83 | Exceptions/NotInvertibleException.cpp \
|
---|
| 84 | Exceptions/NotOnSurfaceException.cpp \
|
---|
| 85 | Exceptions/ShapeException.cpp \
|
---|
| 86 | Exceptions/SkewException.cpp \
|
---|
| 87 | Exceptions/ZeroVectorException.cpp
|
---|
[456341] | 88 |
|
---|
[06300d] | 89 | EXCEPTIONHEADER = \
|
---|
| 90 | Exceptions/CustomException.hpp \
|
---|
| 91 | Exceptions/LinearDependenceException.hpp \
|
---|
| 92 | Exceptions/MathException.hpp \
|
---|
| 93 | Exceptions/NotInvertibleException.hpp \
|
---|
| 94 | Exceptions/NotOnSurfaceException.hpp \
|
---|
| 95 | Exceptions/ShapeException.hpp \
|
---|
| 96 | Exceptions/SkewException.hpp \
|
---|
| 97 | Exceptions/ZeroVectorException.hpp
|
---|
[9fb860] | 98 |
|
---|
[efc3cb] | 99 | PARSERSOURCE = \
|
---|
| 100 | Parser/ChangeTracker.cpp \
|
---|
| 101 | Parser/FormatParser.cpp \
|
---|
[52baf9] | 102 | Parser/FormatParserStorage.cpp \
|
---|
[43dad6] | 103 | Parser/MpqcParser.cpp \
|
---|
| 104 | Parser/PcpParser.cpp \
|
---|
[efc3cb] | 105 | Parser/TremoloParser.cpp \
|
---|
| 106 | Parser/XyzParser.cpp
|
---|
[88104f] | 107 |
|
---|
[efc3cb] | 108 | PARSERHEADER = \
|
---|
| 109 | Parser/ChangeTracker.hpp \
|
---|
| 110 | Parser/FormatParser.hpp \
|
---|
[52baf9] | 111 | Parser/FormatParserStorage.hpp \
|
---|
[43dad6] | 112 | Parser/MpqcParser.hpp \
|
---|
| 113 | Parser/PcpParser.hpp \
|
---|
[efc3cb] | 114 | Parser/TremoloParser.hpp \
|
---|
| 115 | Parser/XyzParser.hpp
|
---|
| 116 |
|
---|
| 117 | PATTERNSOURCE = \
|
---|
| 118 | Patterns/Observer.cpp
|
---|
| 119 | PATTERNHEADER = \
|
---|
| 120 | Patterns/Cacheable.hpp \
|
---|
| 121 | Patterns/Observer.hpp \
|
---|
| 122 | Patterns/Singleton.hpp
|
---|
[997784] | 123 |
|
---|
| 124 | SHAPESOURCE = \
|
---|
[e38447] | 125 | Shapes/BaseShapes.cpp \
|
---|
[e09b70] | 126 | Shapes/Shape.cpp \
|
---|
| 127 | Shapes/ShapeOps.cpp
|
---|
[997784] | 128 | SHAPEHEADER = \
|
---|
[e38447] | 129 | Shapes/BaseShapes.hpp \
|
---|
[e09b70] | 130 | Shapes/Shape.hpp \
|
---|
| 131 | Shapes/ShapeOps.hpp
|
---|
[997784] | 132 |
|
---|
[f5a86a] | 133 |
|
---|
[63b56a7] | 134 | QTUIMOC_HEADER = UIElements/QT4/QTDialog.hpp \
|
---|
| 135 | UIElements/QT4/QTMainWindow.hpp \
|
---|
[257c77] | 136 | UIElements/Menu/QT4/QTMenu.hpp \
|
---|
| 137 | UIElements/Views/QT4/QTWorldView.hpp \
|
---|
| 138 | UIElements/Views/QT4/GLMoleculeView.hpp \
|
---|
| 139 | UIElements/Views/QT4/QTMoleculeView.hpp \
|
---|
| 140 | UIElements/Views/QT4/QTStatusBar.hpp
|
---|
[63b56a7] | 141 |
|
---|
| 142 | QTUIMOC_TARGETS = QTMainWindow.moc.cpp \
|
---|
| 143 | QTMenu.moc.cpp\
|
---|
| 144 | QTDialog.moc.cpp \
|
---|
| 145 | QTWorldView.moc.cpp \
|
---|
| 146 | GLMoleculeView.moc.cpp \
|
---|
[a77c96] | 147 | QTMoleculeView.moc.cpp \
|
---|
[63b56a7] | 148 | QTStatusBar.moc.cpp
|
---|
[3027f8] | 149 |
|
---|
[57adc7] | 150 | DESCRIPTORSOURCE = Descriptors/AtomDescriptor.cpp \
|
---|
[efc3cb] | 151 | Descriptors/AtomIdDescriptor.cpp \
|
---|
[48dcbd] | 152 | Descriptors/AtomSelectionDescriptor.cpp \
|
---|
[6d858c] | 153 | Descriptors/AtomShapeDescriptor.cpp \
|
---|
[efc3cb] | 154 | Descriptors/AtomTypeDescriptor.cpp \
|
---|
| 155 | Descriptors/MoleculeDescriptor.cpp \
|
---|
[e05826] | 156 | Descriptors/MoleculeIdDescriptor.cpp \
|
---|
[e6317b] | 157 | Descriptors/MoleculeNameDescriptor.cpp \
|
---|
[cf0ca1] | 158 | Descriptors/MoleculePtrDescriptor.cpp \
|
---|
| 159 | Descriptors/MoleculeSelectionDescriptor.cpp
|
---|
[57adc7] | 160 |
|
---|
[75ac0c] | 161 |
|
---|
[57adc7] | 162 | DESCRIPTORHEADER = Descriptors/AtomDescriptor.hpp \
|
---|
[efc3cb] | 163 | Descriptors/AtomIdDescriptor.hpp \
|
---|
[48dcbd] | 164 | Descriptors/AtomSelectionDescriptor.hpp \
|
---|
[6d858c] | 165 | Descriptors/AtomShapeDescriptor.hpp \
|
---|
[efc3cb] | 166 | Descriptors/AtomTypeDescriptor.hpp \
|
---|
| 167 | Descriptors/MoleculeDescriptor.hpp \
|
---|
[e30ce8] | 168 | Descriptors/MoleculeIdDescriptor.hpp \
|
---|
[31b09e] | 169 | Descriptors/MoleculeNameDescriptor.hpp \
|
---|
[cf0ca1] | 170 | Descriptors/MoleculePtrDescriptor.hpp \
|
---|
| 171 | Descriptors/MoleculeSelectionDescriptor.cpp
|
---|
[67c75b] | 172 |
|
---|
[63b56a7] | 173 | QTUISOURCE = ${QTUIMOC_TARGETS} \
|
---|
[67c75b] | 174 | UIElements/QT4/QTMainWindow.cpp \
|
---|
| 175 | UIElements/QT4/QTDialog.cpp \
|
---|
| 176 | UIElements/QT4/QTUIFactory.cpp \
|
---|
[257c77] | 177 | UIElements/Menu/QT4/QTMenu.cpp \
|
---|
| 178 | UIElements/Views/QT4/QTWorldView.cpp \
|
---|
| 179 | UIElements/Views/QT4/GLMoleculeView.cpp \
|
---|
| 180 | UIElements/Views/QT4/QTMoleculeView.cpp \
|
---|
| 181 | UIElements/Views/QT4/QTStatusBar.cpp
|
---|
[a77c96] | 182 |
|
---|
[ea94a8] | 183 | QTUIHEADER = ${QTUIMOC_HEADER} UIElements/QT4/QTUIFactory.hpp
|
---|
[3027f8] | 184 |
|
---|
[67c75b] | 185 | QTUI_DEFS =
|
---|
| 186 |
|
---|
[efc3cb] | 187 | SOURCE = \
|
---|
| 188 | ${ANALYSISSOURCE} \
|
---|
[5079a0] | 189 | ${ACTIONSSOURCE} \
|
---|
[efc3cb] | 190 | ${ATOMSOURCE} \
|
---|
[456341] | 191 | ${EXCEPTIONSOURCE} \
|
---|
[efc3cb] | 192 | ${PATTERNSOURCE} \
|
---|
| 193 | ${PARSERSOURCE} \
|
---|
[997784] | 194 | ${SHAPESOURCE} \
|
---|
[efc3cb] | 195 | ${DESCRIPTORSOURCE} \
|
---|
| 196 | ${HELPERSOURCE} \
|
---|
| 197 | bond.cpp \
|
---|
| 198 | bondgraph.cpp \
|
---|
| 199 | boundary.cpp \
|
---|
[83c09a] | 200 | Box.cpp \
|
---|
[c6efc1] | 201 | CommandLineParser.cpp \
|
---|
[efc3cb] | 202 | config.cpp \
|
---|
[88104f] | 203 | ConfigFileBuffer.cpp \
|
---|
[efc3cb] | 204 | element.cpp \
|
---|
[5079a0] | 205 | elements_db.cpp \
|
---|
[efc3cb] | 206 | ellipsoid.cpp \
|
---|
| 207 | errorlogger.cpp \
|
---|
| 208 | graph.cpp \
|
---|
| 209 | helpers.cpp \
|
---|
| 210 | info.cpp \
|
---|
| 211 | leastsquaremin.cpp \
|
---|
| 212 | Line.cpp \
|
---|
| 213 | linkedcell.cpp \
|
---|
| 214 | log.cpp \
|
---|
| 215 | logger.cpp \
|
---|
[456341] | 216 | Matrix.cpp \
|
---|
[efc3cb] | 217 | moleculelist.cpp \
|
---|
| 218 | molecule.cpp \
|
---|
| 219 | molecule_dynamics.cpp \
|
---|
| 220 | molecule_fragmentation.cpp \
|
---|
| 221 | molecule_geometry.cpp \
|
---|
| 222 | molecule_graph.cpp \
|
---|
| 223 | molecule_pointcloud.cpp \
|
---|
| 224 | parser.cpp \
|
---|
| 225 | periodentafel.cpp \
|
---|
| 226 | Plane.cpp \
|
---|
[1024cb] | 227 | Space.cpp \
|
---|
[efc3cb] | 228 | tesselation.cpp \
|
---|
| 229 | tesselationhelpers.cpp \
|
---|
[a3fded] | 230 | ThermoStatContainer.cpp \
|
---|
[efc3cb] | 231 | triangleintersectionlist.cpp \
|
---|
[1024cb] | 232 | vector.cpp \
|
---|
[efc3cb] | 233 | vector_ops.cpp \
|
---|
[1024cb] | 234 | verbose.cpp \
|
---|
[efc3cb] | 235 | World.cpp
|
---|
[5f612ee] | 236 |
|
---|
| 237 | HEADER = \
|
---|
[efc3cb] | 238 | ${ANALYSISHEADER} \
|
---|
[5079a0] | 239 | ${ACTIONSHEADER} \
|
---|
[efc3cb] | 240 | ${ATOMHEADER} \
|
---|
[456341] | 241 | ${EXCEPTIONHEADER} \
|
---|
[efc3cb] | 242 | ${PARSERHEADER} \
|
---|
| 243 | ${PATTERNHEADER} \
|
---|
[997784] | 244 | ${SHAPEHEADER} \
|
---|
[efc3cb] | 245 | ${DESCRIPTORHEADER} \
|
---|
| 246 | bond.hpp \
|
---|
| 247 | bondgraph.hpp \
|
---|
| 248 | boundary.hpp \
|
---|
[83c09a] | 249 | Box.hpp \
|
---|
[c6efc1] | 250 | CommandLineParser.hpp \
|
---|
[efc3cb] | 251 | config.hpp \
|
---|
[88104f] | 252 | ConfigFileBuffer.hpp \
|
---|
[efc3cb] | 253 | defs.hpp \
|
---|
| 254 | element.hpp \
|
---|
[5079a0] | 255 | elements_db.hpp \
|
---|
[efc3cb] | 256 | ellipsoid.hpp \
|
---|
| 257 | errorlogger.hpp \
|
---|
| 258 | graph.hpp \
|
---|
| 259 | helpers.hpp \
|
---|
| 260 | info.hpp \
|
---|
| 261 | leastsquaremin.hpp \
|
---|
| 262 | Line.hpp \
|
---|
| 263 | linkedcell.hpp \
|
---|
| 264 | lists.hpp \
|
---|
| 265 | log.hpp \
|
---|
| 266 | logger.hpp \
|
---|
[456341] | 267 | Matrix.hpp \
|
---|
[efc3cb] | 268 | molecule.hpp \
|
---|
| 269 | molecule_template.hpp \
|
---|
| 270 | parser.hpp \
|
---|
| 271 | periodentafel.hpp \
|
---|
| 272 | Plane.hpp \
|
---|
| 273 | stackclass.hpp \
|
---|
| 274 | tesselation.hpp \
|
---|
| 275 | tesselationhelpers.hpp \
|
---|
[a3fded] | 276 | ThermoStatContainer.hpp \
|
---|
[efc3cb] | 277 | triangleintersectionlist.hpp \
|
---|
| 278 | verbose.hpp \
|
---|
| 279 | vector_ops.hpp \
|
---|
| 280 | World.hpp
|
---|
[3027f8] | 281 |
|
---|
[920c70] | 282 | # the following files are no longer used:
|
---|
| 283 | # memoryallocator.hpp \
|
---|
[1024cb] | 284 | # memoryallocator.cpp \
|
---|
[920c70] | 285 | # memoryusageobserver.hpp \
|
---|
| 286 | # memoryusageobserver.cpp
|
---|
[ef9df36] | 287 |
|
---|
[fa861b] | 288 | BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB)
|
---|
[b1d8092] | 289 | GUI_LIBS = ${QT_LDADD} ${QT_LIB_GUI} -lQtOpenGL ${GLU_LIBS}
|
---|
[5079a0] | 290 | INCLUDES = -I$(top_srcdir)/src/unittests -I$(top_srcdir)/src/Actions -I$(top_srcdir)/src/UIElements
|
---|
[ef9df36] | 291 |
|
---|
[04488a] | 292 | noinst_LIBRARIES = libmolecuilder.a libgslwrapper.a libmenu.a libparser.a
|
---|
| 293 | bin_PROGRAMS = molecuilder molecuildergui joiner analyzer
|
---|
| 294 |
|
---|
[14de469] | 295 | molecuilderdir = ${bindir}
|
---|
[b1d8092] | 296 |
|
---|
[b9907c] | 297 | libmolecuilder_a_SOURCES = ${SOURCE} ${HEADER}
|
---|
[b1d8092] | 298 |
|
---|
[9fe36b] | 299 | libmenu_a_SOURCES = ${UISOURCE} ${UIHEADER}
|
---|
[35b698] | 300 | libparser_a_SOURCES = ${PARSERSOURCE} ${PARSERHEADER}
|
---|
[9fb860] | 301 | libgslwrapper_a_SOURCES = ${LINALGSOURCE} ${LINALGHEADER}
|
---|
[b1d8092] | 302 |
|
---|
[6ac7ee] | 303 | molecuilder_DATA = elements.db valence.db orbitals.db Hbonddistance.db Hbondangle.db
|
---|
[b1d8092] | 304 |
|
---|
[4d9c01] | 305 | molecuilder_CXXFLAGS = $(BOOST_CPPFLAGS)
|
---|
| 306 | #molecuilder_CXXFLAGS += -DNO_CACHING
|
---|
[9fe36b] | 307 | molecuilder_LDFLAGS = $(BOOST_LIB)
|
---|
[82b71a] | 308 | molecuilder_SOURCES = ${LEGACYSOURCE} builder.cpp
|
---|
[b8d1aeb] | 309 | molecuilder_SOURCES += $(srcdir)/version.c
|
---|
[04488a] | 310 | molecuilder_LDADD = UIElements/libMolecuilderUI.a Actions/libMolecuilderActions.a libmolecuilder.a libparser.a libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
|
---|
[b1d8092] | 311 |
|
---|
[3027f8] | 312 | #Stuff for building the GUI using QT
|
---|
[82b71a] | 313 | molecuildergui_SOURCES = ${QTUISOURCE} ${LEGACYSOURCE} builder.cpp
|
---|
[b8d1aeb] | 314 | molecuildergui_SOURCES += $(srcdir)/version.c
|
---|
[cef1d7] | 315 | molecuildergui_CXXFLAGS = ${QT_CXXFLAGS} ${GLU_CXXFLAGS} -DUSE_GUI_QT
|
---|
| 316 | molecuildergui_LDFLAGS = $(BOOST_LIB) ${QT_LDFLAGS} ${GLU_LDFLAGS}
|
---|
[04488a] | 317 | molecuildergui_LDADD = UIElements/libMolecuilderUI.a Actions/libMolecuilderActions.a libmolecuilder.a libparser.a libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB} ${GUI_LIBS}
|
---|
[b1d8092] | 318 |
|
---|
[b9907c] | 319 | joiner_SOURCES = joiner.cpp datacreator.cpp parser.cpp datacreator.hpp helpers.hpp parser.hpp periodentafel.hpp
|
---|
[4d9c01] | 320 | joiner_LDADD = libmolecuilder.a $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
---|
[b1d8092] | 321 |
|
---|
[b9907c] | 322 | analyzer_SOURCES = analyzer.cpp datacreator.cpp parser.cpp helpers.hpp periodentafel.hpp parser.hpp datacreator.hpp
|
---|
[4d9c01] | 323 | analyzer_LDADD = libmolecuilder.a $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
---|
[14de469] | 324 |
|
---|
[3027f8] | 325 | #Rules needed for QT4
|
---|
| 326 | # UI-Files are scattered throughout several subdirectories
|
---|
| 327 | # Therfore `%'-rules do not seem to work
|
---|
| 328 | #Quick fix to get it done otherwise
|
---|
[d3a5ea] | 329 | ${QTUIMOC_TARGETS}: ${QTUIMOC_HEADER}
|
---|
[fa27ed] | 330 | list='$(QTUIMOC_HEADER)'; for header in $$list; do \
|
---|
[3027f8] | 331 | echo "Making mocfile for $$header"; \
|
---|
| 332 | target=`basename $$header | sed "s/\(.*\)\..*/\1.moc.cpp/"`;\
|
---|
| 333 | $(MOC) $(srcdir)/$$header -o $$target \
|
---|
| 334 | || eval $$failcom; \
|
---|
| 335 | done;
|
---|
[9fe36b] | 336 |
|
---|
| 337 | MOSTLYCLEANFILES = ${QTUIMOC_TARGETS}
|
---|
[3027f8] | 338 |
|
---|
[c111db] | 339 | #EXTRA_DIST = ${molecuilder_DATA}
|
---|
[65b6e0] | 340 |
|
---|
[a8eb4a] | 341 | FORCE:
|
---|
| 342 | $(srcdir)/.git-version: FORCE
|
---|
[f8be39] | 343 | @if (test -d $(top_srcdir)/.git && cd $(srcdir) \
|
---|
| 344 | && { git describe --dirty --always || git describe; } ) > .git-version-t 2>/dev/null \
|
---|
[a8eb4a] | 345 | && ! diff .git-version-t $(srcdir)/.git-version >/dev/null 2>&1; then \
|
---|
| 346 | mv -f .git-version-t $(srcdir)/.git-version; \
|
---|
| 347 | else \
|
---|
| 348 | rm -f .git-version-t; \
|
---|
| 349 | fi
|
---|
| 350 |
|
---|
| 351 | EXTRA_DIST = $(srcdir)/.git-version
|
---|
| 352 |
|
---|
| 353 | $(srcdir)/version.c: $(srcdir)/.git-version
|
---|
| 354 | echo "const char *ESPACKVersion = \"$(PACKAGE_NAME) -- git version: "`cat $(srcdir)/.git-version`"\";" > $@
|
---|
| 355 |
|
---|
[b8d1aeb] | 356 |
|
---|