]> git.lyx.org Git - lyx.git/blob - src/Makefile.am
ea5ca423406d6cb08a036ea221f34ec6577edbce
[lyx.git] / src / Makefile.am
1 include $(top_srcdir)/config/common.am
2
3 ############################### Core  ##############################
4
5 AM_CPPFLAGS += $(PCH_FLAGS) -I$(top_srcdir)/src $(BOOST_INCLUDES) $(ENCHANT_CFLAGS) $(HUNSPELL_CFLAGS)
6 AM_CPPFLAGS += $(QT4_CPPFLAGS) $(QT4_CORE_INCLUDES)
7
8 if BUILD_CLIENT_SUBDIR
9 CLIENT = client
10 endif
11
12 SUBDIRS = support frontends . $(CLIENT) tex2lyx
13
14 EXTRA_DIST = pch.h
15
16 OTHERLIBS = $(BOOST_LIBS) $(MYTHES_LIBS) $(ENCHANT_LIBS) $(HUNSPELL_LIBS) \
17             @LIBS@ $(SOCKET_LIBS) $(LIBSHLWAPI) $(LIBPSAPI)
18
19 noinst_LIBRARIES = liblyxcore.a
20 bin_PROGRAMS = lyx
21
22 lyx_LDADD = \
23         liblyxcore.a \
24         liblyxmathed.a \
25         liblyxinsets.a \
26         frontends/liblyxfrontends.a \
27         frontends/qt4/liblyxqt4.a \
28         liblyxgraphics.a \
29         support/liblyxsupport.a \
30         $(OTHERLIBS) \
31         $(QT4_LDFLAGS) \
32         $(QT4_LIB)
33
34 if LYX_WIN_RESOURCE
35 .rc.o:
36         cp $(top_srcdir)/development/Win32/packaging/icons/lyx_*32x32.ico .
37         windres -I$(top_builddir) --preprocessor "$(CPP) -xc-header -DRC_INVOKED" $< -o $@
38 endif
39
40 if INSTALL_MACOSX
41 lyx_LDFLAGS = -framework AppKit -framework ApplicationServices
42 endif
43
44 #lyx_LDFLAGS=-Wl,-O1
45
46 BUILT_SOURCES = $(PCH_FILE)
47
48 if INSTALL_MACOSX
49 APPLESPELL = AppleSpellChecker.cpp AppleSpellChecker.h
50 endif
51
52 if USE_ASPELL
53 ASPELL = AspellChecker.cpp AspellChecker.h
54 PWL = PersonalWordList.cpp PersonalWordList.h
55 endif
56
57 if USE_ENCHANT
58 ENCHANT = EnchantChecker.cpp EnchantChecker.h
59 PWL = PersonalWordList.cpp PersonalWordList.h
60 endif
61
62 if USE_HUNSPELL
63 HUNSPELL = HunspellChecker.cpp HunspellChecker.h
64 PWL = PersonalWordList.cpp PersonalWordList.h
65 endif
66
67 # These four objects are linked as object files as they are not
68 # referenced within the core and therefore are not picked up
69 # by the linker without looping over libs. We do not want that,
70 # and in fact libtools seems not able to do that.
71 lyx_SOURCES = \
72         main.cpp \
73         $(APPLESPELL) \
74         $(ASPELL) \
75         BiblioInfo.h \
76         BiblioInfo.cpp \
77         Box.cpp \
78         Box.h \
79         Compare.cpp \
80         Compare.h \
81         Dimension.cpp \
82         Dimension.h \
83         $(ENCHANT) \
84         $(HUNSPELL) \
85         $(PWL) \
86         LaTeXFonts.cpp \
87         LaTeXFonts.h \
88         PrinterParams.cpp \
89         PrinterParams.h \
90         Thesaurus.cpp \
91         Thesaurus.h
92
93 if LYX_WIN_RESOURCE
94 lyx_SOURCES += lyxwinres.rc
95 endif
96
97 SOURCEFILESCORE = \
98         Author.cpp \
99         Bidi.cpp \
100         boost.cpp \
101         BranchList.cpp \
102         Buffer.cpp \
103         buffer_funcs.cpp \
104         BufferList.cpp \
105         BufferParams.cpp \
106         BufferView.cpp \
107         Bullet.cpp \
108         Changes.cpp \
109         Chktex.cpp \
110         CmdDef.cpp \
111         Color.cpp \
112         ConverterCache.cpp \
113         Converter.cpp \
114         CoordCache.cpp \
115         Counters.cpp \
116         Cursor.cpp \
117         CursorSlice.cpp \
118         CutAndPaste.cpp \
119         DepTable.cpp \
120         DocIterator.cpp \
121         Encoding.cpp \
122         BufferEncodings.cpp \
123         ErrorList.cpp \
124         Exporter.cpp \
125         factory.cpp \
126         Floating.cpp \
127         FloatList.cpp \
128         FontInfo.cpp \
129         FontList.cpp \
130         Font.cpp \
131         Format.cpp \
132         FuncRequest.cpp \
133         FuncStatus.cpp \
134         Graph.cpp \
135         HSpace.cpp \
136         IndicesList.cpp \
137         InsetIterator.cpp \
138         InsetList.cpp \
139         Intl.cpp \
140         KeyMap.cpp \
141         KeySequence.cpp \
142         Language.cpp \
143         LaTeX.cpp \
144         LaTeXFeatures.cpp \
145         LaTeXPackages.cpp \
146         LayoutFile.cpp \
147         LayoutModuleList.cpp \
148         Length.cpp \
149         lengthcommon.cpp \
150         Lexer.cpp \
151         LyX.cpp \
152         LyXAction.cpp \
153         lyxfind.cpp \
154         LyXRC.cpp \
155         LyXVC.cpp \
156         MetricsInfo.cpp \
157         ModuleList.cpp \
158         Mover.cpp \
159         output_docbook.cpp \
160         output.cpp \
161         output_latex.cpp \
162         output_xhtml.cpp \
163         OutputParams.cpp \
164         output_plaintext.cpp \
165         Paragraph.cpp \
166         ParagraphMetrics.cpp \
167         ParagraphParameters.cpp \
168         ParIterator.cpp \
169         PDFOptions.cpp \
170         Row.cpp \
171         rowpainter.cpp \
172         Server.cpp \
173         ServerSocket.cpp \
174         sgml.cpp \
175         Session.cpp \
176         Spacing.cpp \
177         TexRow.cpp \
178         Text.cpp \
179         Text2.cpp \
180         Text3.cpp \
181         TexStream.cpp \
182         TextClass.cpp \
183         TextMetrics.cpp \
184         TocBackend.cpp \
185         Trans.cpp \
186         Undo.cpp \
187         VCBackend.cpp \
188         version.cpp \
189         VSpace.cpp \
190         WordList.cpp
191
192 HEADERFILESCORE = \
193         Author.h \
194         Bidi.h \
195         BranchList.h \
196         buffer_funcs.h \
197         Buffer.h \
198         BufferEncodings.h \
199         BufferList.h \
200         BufferParams.h \
201         BufferView.h \
202         Bullet.h \
203         Citation.h \
204         Changes.h \
205         Chktex.h \
206         CmdDef.h \
207         ColorCode.h \
208         Color.h \
209         ColorSet.h \
210         CompletionList.h \
211         ConverterCache.h \
212         Converter.h \
213         CoordCache.h \
214         Counters.h \
215         Cursor.h \
216         CursorSlice.h \
217         CutAndPaste.h \
218         DepTable.h \
219         DispatchResult.h \
220         DocIterator.h \
221         DocumentClassPtr.h \
222         Encoding.h \
223         ErrorList.h \
224         Exporter.h \
225         factory.h \
226         Floating.h \
227         FloatList.h \
228         Font.h \
229         FontEnums.h \
230         FontInfo.h \
231         FontList.h \
232         Format.h \
233         FuncCode.h \
234         FuncRequest.h \
235         FuncStatus.h \
236         Graph.h \
237         HSpace.h \
238         IndicesList.h \
239         InsetIterator.h \
240         InsetList.h \
241         Intl.h \
242         KeyMap.h \
243         KeySequence.h \
244         Language.h \
245         LaTeXFeatures.h \
246         LaTeXPackages.h \
247         LaTeX.h \
248         Layout.h \
249         LayoutEnums.h \
250         LayoutFile.h \
251         LayoutModuleList.h \
252         Length.h \
253         Lexer.h \
254         LyXAction.h \
255         lyxfind.h \
256         LyX.h \
257         LyXRC.h \
258         LyXVC.h \
259         MetricsInfo.h \
260         ModuleList.h \
261         Mover.h \
262         output_docbook.h \
263         output.h \
264         OutputEnums.h \
265         output_latex.h \
266         output_xhtml.h \
267         OutputParams.h \
268         output_plaintext.h \
269         paper.h \
270         Paragraph.h \
271         ParagraphList.h \
272         ParagraphMetrics.h \
273         ParagraphParameters.h \
274         ParIterator.h \
275         PDFOptions.h \
276         Row.h \
277         rowpainter.h \
278         Server.h \
279         ServerSocket.h \
280         Session.h \
281         sgml.h \
282         Spacing.h \
283         SpellChecker.h \
284         TexRow.h \
285         TexStream.h \
286         Text.h \
287         TextClass.h \
288         TextMetrics.h \
289         TocBackend.h \
290         Trans.h \
291         Undo.h \
292         update_flags.h \
293         VCBackend.h \
294         version.h \
295         VSpace.h \
296         WordLangTuple.h \
297         WordList.h
298
299 STANDALONEFILES = \
300         Layout.cpp
301
302
303 lyxcore.cpp:
304         @echo -e '$(SOURCEFILESCORE:%=\n#include "%")\n' > $@
305
306 if MONOLITHIC_CORE
307
308 BUILT_SOURCES += lyxcore.cpp $(STANDALONEFILES)
309 CLEANFILES += lyxcore.cpp
310
311 liblyxcore_a_SOURCES = lyxcore.cpp $(STANDALONEFILES) $(HEADERFILESCORE)
312
313 else
314
315 liblyxcore_a_SOURCES = $(SOURCEFILESCORE) $(STANDALONEFILES) $(HEADERFILESCORE)
316
317 endif
318
319 #########################  Qt stuff  ##############################
320
321 MOCHEADER = Compare.h
322
323 if INSTALL_WINDOWS
324
325 MOCHEADER += Server.h
326 MOCFLAG = -D_WIN32
327
328 endif
329
330 MOCEDFILES = $(MOCHEADER:%.h=moc_%.cpp)
331
332 BUILT_SOURCES += $(MOCEDFILES)
333 CLEANFILES += $(MOCEDFILES)
334
335 moc_%.cpp: %.h
336         $(MOC4) $(MOCFLAG) -o $@ $<
337
338 liblyxcore_a_DEPENDENCIES = $(MOCEDFILES)
339
340 ############################### Graphics ##############################
341
342 noinst_LIBRARIES += liblyxgraphics.a
343
344 liblyxgraphics_a_SOURCES = \
345         graphics/epstools.h \
346         graphics/epstools.cpp \
347         graphics/GraphicsCache.h \
348         graphics/GraphicsCache.cpp \
349         graphics/GraphicsCacheItem.h \
350         graphics/GraphicsCacheItem.cpp \
351         graphics/GraphicsConverter.h \
352         graphics/GraphicsConverter.cpp \
353         graphics/GraphicsImage.h \
354         graphics/GraphicsLoader.h \
355         graphics/GraphicsLoader.cpp \
356         graphics/GraphicsParams.cpp \
357         graphics/GraphicsParams.h \
358         graphics/GraphicsTypes.h \
359         graphics/PreviewImage.h \
360         graphics/PreviewImage.cpp \
361         graphics/PreviewLoader.h \
362         graphics/PreviewLoader.cpp
363
364
365 ############################### Mathed  ##############################
366
367 noinst_LIBRARIES += liblyxmathed.a
368
369 SOURCEFILESMATHED = \
370         mathed/CommandInset.cpp \
371         mathed/InsetMathAMSArray.cpp \
372         mathed/InsetMathArray.cpp \
373         mathed/InsetMathBig.cpp \
374         mathed/InsetMathBoldSymbol.cpp \
375         mathed/InsetMathBox.cpp \
376         mathed/InsetMathBrace.cpp \
377         mathed/InsetMath.cpp \
378         mathed/InsetMathCases.cpp \
379         mathed/InsetMathChar.cpp \
380         mathed/InsetMathColor.cpp \
381         mathed/InsetMathComment.cpp \
382         mathed/InsetMathDecoration.cpp \
383         mathed/InsetMathDecoration.h \
384         mathed/InsetMathDelim.cpp \
385         mathed/InsetMathDiff.cpp \
386         mathed/InsetMathDots.cpp \
387         mathed/InsetMathEnsureMath.cpp \
388         mathed/InsetMathEnv.cpp \
389         mathed/InsetMathExFunc.cpp \
390         mathed/InsetMathExInt.cpp \
391         mathed/InsetMathFont.cpp \
392         mathed/InsetMathFontOld.cpp \
393         mathed/InsetMathFrac.cpp \
394         mathed/InsetMathGrid.cpp \
395         mathed/InsetMathHull.cpp \
396         mathed/InsetMathKern.cpp \
397         mathed/InsetMathLefteqn.cpp \
398         mathed/InsetMathLim.cpp \
399         mathed/InsetMathCancel.cpp \
400         mathed/InsetMathCancelto.cpp \
401         mathed/InsetMathMatrix.cpp \
402         mathed/InsetMathNest.cpp \
403         mathed/InsetMathNumber.cpp \
404         mathed/InsetMathOverset.cpp \
405         mathed/InsetMathPar.cpp \
406         mathed/InsetMathPhantom.cpp \
407         mathed/InsetMathRef.cpp \
408         mathed/InsetMathRoot.cpp \
409         mathed/InsetMathScript.cpp \
410         mathed/InsetMathSideset.cpp \
411         mathed/InsetMathSize.cpp \
412         mathed/InsetMathSpace.cpp \
413         mathed/InsetMathSpecialChar.cpp \
414         mathed/InsetMathSplit.cpp \
415         mathed/InsetMathSqrt.cpp \
416         mathed/InsetMathStackrel.cpp \
417         mathed/InsetMathString.cpp \
418         mathed/InsetMathSubstack.cpp \
419         mathed/InsetMathSymbol.cpp \
420         mathed/InsetMathTabular.cpp \
421         mathed/InsetMathUnderset.cpp \
422         mathed/InsetMathUnknown.cpp \
423         mathed/InsetMathXArrow.cpp \
424         mathed/InsetMathXYMatrix.cpp \
425         mathed/InsetMathDiagram.cpp \
426         mathed/MathAtom.cpp \
427         mathed/MathAutoCorrect.cpp \
428         mathed/MathData.cpp \
429         mathed/MathExtern.cpp \
430         mathed/MathFactory.cpp \
431         mathed/MathMacro.cpp \
432         mathed/MathMacroArgument.cpp \
433         mathed/MacroTable.cpp \
434         mathed/MathMacroTemplate.cpp \
435         mathed/MathParser.cpp \
436         mathed/MathStream.cpp \
437         mathed/MathSupport.cpp \
438         mathed/TextPainter.cpp
439
440 HEADERFILESMATHED = \
441         mathed/CommandInset.h \
442         mathed/InsetMathAMSArray.h \
443         mathed/InsetMathArray.h \
444         mathed/InsetMathBig.h \
445         mathed/InsetMathBoldSymbol.h \
446         mathed/InsetMathBox.h \
447         mathed/InsetMathBrace.h \
448         mathed/InsetMathCancel.h \
449         mathed/InsetMathCancelto.h \
450         mathed/InsetMathCases.h \
451         mathed/InsetMathChar.h \
452         mathed/InsetMathColor.h \
453         mathed/InsetMathComment.h \
454         mathed/InsetMathDelim.h \
455         mathed/InsetMathDiff.h \
456         mathed/InsetMathDots.h \
457         mathed/InsetMathEnsureMath.h \
458         mathed/InsetMathEnv.h \
459         mathed/InsetMathExFunc.h \
460         mathed/InsetMathExInt.h \
461         mathed/InsetMathFont.h \
462         mathed/InsetMathFontOld.h \
463         mathed/InsetMathFrac.h \
464         mathed/InsetMathGrid.h \
465         mathed/InsetMath.h \
466         mathed/InsetMathHull.h \
467         mathed/InsetMathKern.h \
468         mathed/InsetMathLefteqn.h \
469         mathed/InsetMathLim.h \
470         mathed/InsetMathMatrix.h \
471         mathed/InsetMathNest.h \
472         mathed/InsetMathNumber.h \
473         mathed/InsetMathOverset.h \
474         mathed/InsetMathPar.h \
475         mathed/InsetMathPhantom.h \
476         mathed/InsetMathRef.h \
477         mathed/InsetMathRoot.h \
478         mathed/InsetMathScript.h \
479         mathed/InsetMathSideset.h \
480         mathed/InsetMathSize.h \
481         mathed/InsetMathSpace.h \
482         mathed/InsetMathSpecialChar.h \
483         mathed/InsetMathSplit.h \
484         mathed/InsetMathSqrt.h \
485         mathed/InsetMathStackrel.h \
486         mathed/InsetMathString.h \
487         mathed/InsetMathSubstack.h \
488         mathed/InsetMathSymbol.h \
489         mathed/InsetMathTabular.h \
490         mathed/InsetMathUnderset.h \
491         mathed/InsetMathUnknown.h \
492         mathed/InsetMathXArrow.h \
493         mathed/InsetMathXYMatrix.h \
494         mathed/InsetMathDiagram.h \
495         mathed/MathAtom.h \
496         mathed/MathAutoCorrect.h \
497         mathed/MathData.h \
498         mathed/MathCompletionList.h \
499         mathed/MathExtern.h \
500         mathed/MathFactory.h \
501         mathed/MathMacro.h \
502         mathed/MathMacroArgument.h \
503         mathed/MacroTable.h \
504         mathed/MathMacroTemplate.h \
505         mathed/MathParser.h \
506         mathed/MathParser_flags.h \
507         mathed/ReplaceData.h \
508         mathed/MathStream.h \
509         mathed/MathSupport.h \
510         mathed/TextPainter.h
511
512 lyxmathed.cpp:
513         @echo -e '$(SOURCEFILESMATHED:%=\n#include "%")\n' > $@
514
515 if MONOLITHIC_MATHED
516
517 BUILT_SOURCES += lyxmathed.cpp
518 CLEANFILES += lyxmathed.cpp
519
520 liblyxmathed_a_SOURCES = lyxmathed.cpp $(HEADERFILESMATHED)
521
522 else
523
524 liblyxmathed_a_SOURCES = $(SOURCEFILESMATHED) $(HEADERFILESMATHED)
525
526 endif
527
528 ############################### Insets  ##############################
529
530 noinst_LIBRARIES += liblyxinsets.a
531
532 SOURCEFILESINSETS = \
533         insets/ExternalSupport.cpp \
534         insets/ExternalTemplate.cpp \
535         insets/ExternalTransforms.cpp \
536         insets/RenderButton.cpp \
537         insets/RenderGraphic.cpp \
538         insets/RenderPreview.cpp \
539         insets/Inset.cpp \
540         insets/InsetArgument.cpp \
541         insets/InsetBibitem.cpp \
542         insets/InsetBibtex.cpp \
543         insets/InsetBox.cpp \
544         insets/InsetBranch.cpp \
545         insets/InsetCaption.cpp \
546         insets/InsetCitation.cpp \
547         insets/InsetCollapsable.cpp \
548         insets/InsetCommand.cpp \
549         insets/InsetCommandParams.cpp \
550         insets/InsetERT.cpp \
551         insets/InsetExternal.cpp \
552         insets/InsetFlex.cpp \
553         insets/InsetFloat.cpp \
554         insets/InsetFloatList.cpp \
555         insets/InsetFoot.cpp \
556         insets/InsetFootlike.cpp \
557         insets/InsetGraphicsParams.cpp \
558         insets/InsetGraphics.cpp \
559         insets/InsetHyperlink.cpp \
560         insets/InsetInclude.cpp \
561         insets/InsetIndex.cpp \
562         insets/InsetInfo.cpp \
563         insets/InsetIPA.cpp \
564         insets/InsetIPAMacro.cpp \
565         insets/InsetLabel.cpp \
566         insets/InsetLayout.cpp \
567         insets/InsetLine.cpp \
568         insets/InsetListings.cpp \
569         insets/InsetListingsParams.cpp \
570         insets/InsetMarginal.cpp \
571         insets/InsetNewline.cpp \
572         insets/InsetNewpage.cpp \
573         insets/InsetNomencl.cpp \
574         insets/InsetNote.cpp \
575         insets/InsetPhantom.cpp \
576         insets/InsetPreview.cpp \
577         insets/InsetQuotes.cpp \
578         insets/InsetRef.cpp \
579         insets/InsetScript.cpp \
580         insets/InsetSpace.cpp \
581         insets/InsetSpecialChar.cpp \
582         insets/InsetTabular.cpp \
583         insets/InsetText.cpp \
584         insets/InsetTOC.cpp \
585         insets/InsetVSpace.cpp \
586         insets/InsetWrap.cpp
587
588 HEADERFILESINSETS = \
589         insets/ExternalSupport.h \
590         insets/ExternalTemplate.h \
591         insets/ExternalTransforms.h \
592         insets/RenderBase.h \
593         insets/RenderButton.h \
594         insets/RenderGraphic.h \
595         insets/RenderPreview.h \
596         insets/Inset.h \
597         insets/InsetArgument.h \
598         insets/InsetBibitem.h \
599         insets/InsetBibtex.h \
600         insets/InsetBox.h \
601         insets/InsetBranch.h \
602         insets/InsetCaption.h \
603         insets/InsetCitation.h \
604         insets/InsetCode.h \
605         insets/InsetCollapsable.h \
606         insets/InsetCommand.h \
607         insets/InsetCommandParams.h \
608         insets/InsetERT.h \
609         insets/InsetExternal.h \
610         insets/InsetFlex.h \
611         insets/InsetFloat.h \
612         insets/InsetFoot.h \
613         insets/InsetFloatList.h \
614         insets/InsetFootlike.h \
615         insets/InsetGraphicsParams.h \
616         insets/InsetGraphics.h \
617         insets/InsetHyperlink.h \
618         insets/InsetInclude.h \
619         insets/InsetIndex.h \
620         insets/InsetInfo.h \
621         insets/InsetIPA.h \
622         insets/InsetIPAMacro.h \
623         insets/InsetPreview.h \
624         insets/InsetLabel.h \
625         insets/InsetLayout.h \
626         insets/InsetLine.h \
627         insets/InsetListings.h \
628         insets/InsetListingsParams.h \
629         insets/InsetMarginal.h \
630         insets/InsetNewline.h \
631         insets/InsetNewpage.h \
632         insets/InsetNomencl.h \
633         insets/InsetNote.h \
634         insets/InsetPhantom.h \
635         insets/InsetQuotes.h \
636         insets/InsetRef.h \
637         insets/InsetScript.h \
638         insets/InsetSpace.h \
639         insets/InsetSpecialChar.h \
640         insets/InsetTabular.h \
641         insets/InsetText.h \
642         insets/InsetTOC.h \
643         insets/InsetVSpace.h \
644         insets/InsetWrap.h
645
646 #       insets/InsetList.cpp \
647 #       insets/InsetList.h \
648 #       insets/InsetSection.h \
649 #       insets/InsetSection.cpp
650
651 lyxinsets.cpp:
652         @echo -e '$(SOURCEFILESINSETS:%=\n#include "%")\n' > $@
653
654 if MONOLITHIC_INSETS
655
656 BUILT_SOURCES += lyxinsets.cpp
657 CLEANFILES += lyxinsets.cpp
658
659 liblyxinsets_a_SOURCES = lyxinsets.cpp $(HEADERFILESINSETS)
660
661 else
662
663 liblyxinsets_a_SOURCES = $(SOURCEFILESINSETS) $(HEADERFILESINSETS)
664
665 endif
666
667
668 ############################## Tests ##################################
669
670 EXTRA_DIST += \
671         tests/test_layout
672
673 alltests: check alltests-recursive
674
675 alltests-recursive: check_layout
676         @srcdir=$(srcdir) $(srcdir)/tests/test_layout; \
677         if test $$? -eq 0; then \
678                 echo -e "====================\nlayout tests passed.\n===================="; \
679         else \
680                 echo -e "====================\nlayout tests failed.\n===================="; \
681         fi
682         cd tex2lyx; $(MAKE) alltests-recursive
683
684 updatetests:
685         cd tex2lyx; $(MAKE) updatetests
686
687 check_PROGRAMS = \
688         check_layout
689
690 if INSTALL_MACOSX
691 ADD_FRAMEWORKS = -framework QtGui -framework QtCore -framework AppKit -framework ApplicationServices
692 endif
693
694 check_layout_CPPFLAGS = $(AM_CPPFLAGS)
695 check_layout_LDADD = support/liblyxsupport.a $(LIBICONV) $(BOOST_LIBS) @LIBS@ $(QT4_CORE_LIBS) $(LIBSHLWAPI)
696 check_layout_LDFLAGS = $(QT4_CORE_LDFLAGS) $(ADD_FRAMEWORKS)
697 check_layout_SOURCES = \
698         insets/InsetLayout.cpp \
699         Color.cpp \
700         Counters.cpp \
701         Floating.cpp \
702         FloatList.cpp \
703         FontInfo.cpp \
704         Layout.cpp \
705         LayoutFile.cpp \
706         Lexer.cpp \
707         ModuleList.cpp \
708         Spacing.cpp \
709         TextClass.cpp \
710         tests/check_layout.cpp \
711         support/tests/boost.cpp \
712         support/tests/dummy_functions.cpp
713
714 .PHONY: alltests alltests-recursive updatetests