-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathMakefile
767 lines (598 loc) · 24.5 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
# Makefile
# $Id$
# Author: (c) Klaus Luettich, Christian Maeder, Uni Bremen 2002-2009
# This Makefile will compile the hets system and provides also
# targets for test programs during implementation phases.
# !!! Note: This makefile is written for GNU make !!!
# (gmake on solaris)
all: hets
include var.mk
# deprecated since haddock 2
SOURCE_PATHS = . utils/itcor \
utils utils/DrIFT-src utils/GenerateRules utils/InlineAxioms Common \
Common/Lib Common/ATerm Logic CASL CASL/CCC CASL/CompositionTable \
Syntax Static GUI HasCASL Haskell Modal CoCASL COL ConstraintCASL \
CspCASL ATC Proofs Comorphisms Isabelle Driver Modifications \
Taxonomy CASL_DL SoftFOL OWL OMDoc PGIP Propositional RelationalScheme \
VSE Interfaces Temporal CspCASLProver DFOL CMDL
# the 'replacing spaces' example was taken from the (GNU) Make info manual
empty =
space = $(empty) $(empty)
DRIFT_ENV = DERIVEPATH=$(subst $(space),:,$(PFE_PATHS))
DRIFT_deps = utils/DrIFT-src/*hs
GENERATERULES_deps = utils/GenerateRules/*hs $(DRIFT_deps)
GENITCORRECTIONS_deps = utils/itcor/GenItCorrections.hs
INLINEAXIOMS_deps = utils/InlineAxioms/InlineAxioms.hs \
Common/Doc.hs CASL/ToDoc.hs Modal/AS_Modal.hs \
Modal/Parse_AS.hs Modal/ModalSign.hs Modal/Print_AS.hs Modal/StatAna.hs
PERL = perl
HAPPY = happy -sga
GENRULES = utils/genRules
GENRULECALL = $(GENRULES) -r Typeable -r ShATermConvertible -r Binary \
-i Data.Typeable -i Common.ATerm.Lib -i Common.BinaryInstances
GENRULECALL2 = $(GENRULES) -r Typeable -r ShATermLG -r BinaryLG \
-i Data.Typeable -i Common.ATerm.Lib -i Common.BinaryInstances \
-i ATC.Grothendieck
DRIFT = utils/DrIFT
INLINEAXIOMS = utils/outlineAxioms
HADDOCK = haddock
HADDOCKVERSION = $(shell $(HADDOCK) --version)
OSBYUNAME = $(shell uname)
ifneq ($(findstring SunOS, $(OSBYUNAME)),)
TAR = gtar
PATCH = gpatch
else
TAR = tar
PATCH = patch
endif
ARCH = $(subst $(space),,$(shell uname -m))
SETUP = utils/Setup
SETUPPREFIX = --prefix=$(HOME)/.ghc/$(ARCH)-$(OSBYUNAME)-hets-packages
SETUPPACKAGE = ../$(SETUP) clean; \
../$(SETUP) configure $(SETUPPREFIX) --user; \
../$(SETUP) build; ../$(SETUP) install --user
# list glade files
GTK_GLADE_FILES = $(wildcard GUI/Glade/*.glade)
GTK_GLADE_HSFILES = $(subst .glade,.hs,$(GTK_GLADE_FILES))
derived_sources += $(GTK_GLADE_HSFILES)
# the list of logics that need ShATermConvertible instances
logics = CASL HasCASL Isabelle Modal Temporal CoCASL COL CspCASL CASL_DL \
SoftFOL ConstraintCASL Propositional OWL RelationalScheme VSE OMDoc DFOL \
Maude
TESTTARGETFILES += CASL/fromKif.hs CASL/capa.hs HasCASL/hacapa.hs \
Haskell/wrap.hs Isabelle/isa.hs Syntax/hetpa.hs \
ATC/ATCTest.hs ATC/ATCTest2.hs Common/ATerm/ATermLibTest.hs \
Common/ATerm/ATermDiffMain.hs Common/annos.hs Common/test_parser.hs \
SoftFOL/tests/PrintTPTPTests.hs Comorphisms/test/showKP.hs \
Comorphisms/test/sublogicGraph.hs \
SoftFOL/dfg.hs
### list of directories to run checks in
TESTDIRS += Common CASL HasCASL test
hs_clean_files = Haskell/TiATC.hs Haskell/TiDecorateATC.hs \
Haskell/TiPropATC.hs Haskell/ATC_Haskell.der.hs
PFE_TOOLDIR = $(wildcard ../programatica/tools)
ifneq ($(strip $(PFE_TOOLDIR)),)
PFE_DIRS = base/AST base/TI base/parse2 base/parse2/Lexer base/parse2/Parser \
base/parse2/LexerGen base/parse2/LexerSpec base/tests/HbcLibraries \
base/pretty base/syntax base/lib base/lib/Monads base/Modules base/defs \
base/transforms base/transforms/Deriving property \
property/syntax property/AST property/transforms \
property/TI property/defs property/parse2 property/parse2/Parser
PFE_PATHS = $(addprefix $(PFE_TOOLDIR)/, $(PFE_DIRS))
pfe_sources = $(wildcard $(addsuffix /*hs, $(PFE_PATHS)))
PFE_PATH = $(addprefix -i, $(PFE_PATHS))
happy_files += $(PFE_TOOLDIR)/property/parse2/Parser/PropParser.hs
LEX_DIR = $(PFE_TOOLDIR)/base/parse2/Lexer
programatica_pkg: $(PFE_TOOLDIR)/property/parse2/Parser/PropParser.hs \
$(LEX_DIR)/HsLex.hs $(SETUP)
@if $(HCPKG) field programatica version; then \
echo "of programatica package found"; else \
($(PATCH) -usNlp0 -d $(PFE_TOOLDIR) \
-i `pwd`/Haskell/Programatica.patch || exit 0); \
cp -f utils/programatica.cabal ../programatica/tools; \
cp -f $(SETUP) ../programatica/tools; \
(cd ../programatica/tools; \
./Setup configure $(SETUPPREFIX); \
./Setup build; ./Setup install --user) fi
$(LEX_DIR)/HsLex.hs: $(LEX_DIR)Gen/HsLexerGen
echo "{-# OPTIONS -w #-}" > $@
$< >> $@
$(LEX_DIR)Gen/HsLexerGen: $(LEX_DIR)Gen/*.hs $(LEX_DIR)Spec/*.hs \
$(LEX_DIR)/HsTokens.hs
$(HC) --make -fno-monomorphism-restriction -O \
-i$(PFE_TOOLDIR)/base/tests/HbcLibraries \
-i$(PFE_TOOLDIR)/base/lib \
-i$(LEX_DIR) -i$(LEX_DIR)Gen -i$(LEX_DIR)Spec \
$@.hs -o $@
logics += Haskell
derived_sources += Haskell/PreludeString.hs
APPENDPRELUDESTRING = utils/appendHaskellPreludeString \
Haskell/ProgramaticaPrelude.hs
## rule for appendHaskellPreludeString
Haskell/PreludeString.hs: Haskell/PreludeString.append.hs \
$(APPENDPRELUDESTRING)
$(RM) $@
$(APPENDPRELUDESTRING) < $< > $@
chmod 444 $@
Ast_Haskell_files = HsDeclStruct HsExpStruct HsFieldsStruct \
HsGuardsStruct HsKindStruct HsPatStruct HsTypeStruct HsAssocStruct \
HsModule HsName HsLiteral HsIdent
#files in base/TI/
#Ti_Haskell_files = TiTypes TiKinds TiDecorate TiInstanceDB
#Ti_Prop_files = property/TI/TiPropDecorate property/syntax/PropSyntaxRec
Other_PFE_files = property/AST/HsPropStruct base/defs/PNT \
base/defs/UniqueNames base/Modules/TypedIds base/Modules/Ents \
base/parse2/SourceNames base/syntax/SyntaxRec \
property/syntax/PropSyntaxStruct
Haskell_files = $(addsuffix .hs, \
$(addprefix $(PFE_TOOLDIR)/base/AST/, $(Ast_Haskell_files)) \
$(addprefix $(PFE_TOOLDIR)/, $(Other_PFE_files)))
## rule for ATC generation
Haskell/ATC_Haskell.der.hs: $(Haskell_files) $(GENRULES)
$(GENRULECALL) -i Haskell.Binary -i Haskell.BaseATC \
-o $@ $(Haskell_files)
hs_der_files += $(hs_clean_files)
TESTDIRS += ToHaskell
TESTTARGETFILES += Haskell/hana.hs Haskell/h2h.hs Haskell/h2hf.hs
else
# unset this variable from var.mk because the programatica sources
# are needed to created our sources!
PFE_FLAGS =
endif
# end of programatica stuff
TESTTARGETS = Test.o $(subst .hs,,$(TESTTARGETFILES))
# remove -fno-warn-orphans for older ghcs and add -ifgl
HC_WARN = -Wall -fno-warn-orphans
# INCLUDE_PATH =
HC_INCLUDE = $(addprefix -i, $(INCLUDE_PATH))
# uncomment HC_PROF for profiling (and comment out packages in var.mk)
# call resulting binary with a final +RTS -p to get a file <binary>.prof
# HC_PROF = -prof -auto-all -osuf p_o +RTS -K100m -RTS
HC_OPTS += $(HC_WARN) $(HC_INCLUDE) $(HC_PROF)
# -ddump-minimal-imports
# uncomment the above line to generate .imports files for displayDependencyGraph
## deprecated non-sources to be excluded for haddock-0.8
non_sources = Common/LaTeX_maps.svmono.hs Common/CaslLanguage.hs ./Test.hs \
$(SETUP).hs
## deprecated hets sources for haddock-0.8
sources = hets.hs $(filter-out $(non_sources), \
$(wildcard $(addsuffix /[A-Z]*hs, $(SOURCE_PATHS))))
# files generated by DriFT
drifted_files = Common/AS_Annotation.hs \
CASL/AS_Basic_CASL.hs Modal/AS_Modal.hs \
Syntax/AS_Structured.hs Syntax/AS_Architecture.hs Syntax/AS_Library.hs \
Propositional/AS_BASIC_Propositional.hs \
CoCASL/AS_CoCASL.hs COL/AS_COL.hs \
CASL_DL/AS_CASL_DL.hs OWL/ReadWrite.hs \
CspCASL/AS_CspCASL_Process.hs CspCASL/AS_CspCASL.hs \
RelationalScheme/AS.hs ATC/Grothendieck.hs \
$(gendrifted_files)
# files to extract data types from to generate ShATermConvertible instances
atc_files = Common/AS_Annotation.der.hs Common/DefaultMorphism.hs \
Syntax/AS_Structured.der.hs Syntax/AS_Architecture.der.hs \
Common/GlobalAnnotations.hs Syntax/AS_Library.der.hs \
Logic/Prover.hs Common/LibName.hs Common/ExtSign.hs \
Common/ProofTree.hs Static/DevGraph.hs \
Common/Id.hs Common/Result.hs Common/OrderedMap.hs \
Common/Lib/Graph.hs OWL/AS.hs
# files generated by genRules as input for DriFT
atc_der_files = $(foreach file, $(atc_files), \
ATC/$(basename $(basename $(notdir $(file)))).der.hs)
# the rules to create ATC .der.hs file for DriFT
ATC/Id.der.hs: Common/Id.hs $(GENRULES)
$(GENRULECALL) -o $@ $<
ATC/AS.der.hs: OWL/AS.hs $(GENRULES)
$(GENRULES) -r Binary -i Common.BinaryInstances -o $@ $<
ATC/Result.der.hs: Common/Result.hs $(GENRULES)
$(GENRULECALL) -i ATC.Id -o $@ $<
ATC/OrderedMap.der.hs: Common/OrderedMap.hs $(GENRULES)
$(GENRULECALL) -o $@ $<
ATC/Graph.der.hs: Common/Lib/Graph.hs $(GENRULES)
$(GENRULECALL) -o $@ $<
ATC/ProofTree.der.hs: Common/ProofTree.hs $(GENRULES)
$(GENRULECALL) -o $@ $<
ATC/AS_Annotation.der.hs: Common/AS_Annotation.der.hs $(GENRULES)
$(GENRULECALL) -i ATC.Id -i Common.ATerm.ConvInstances -o $@ $<
ATC/LibName.der.hs: Common/LibName.hs $(GENRULES)
$(GENRULECALL) -i ATC.Id -i Common.ATerm.ConvInstances -o $@ $<
ATC/ExtSign.der.hs: Common/ExtSign.hs $(GENRULES)
$(GENRULECALL) -i Common.ATerm.ConvInstances -o $@ $<
ATC/DefaultMorphism.der.hs: Common/DefaultMorphism.hs $(GENRULES)
$(GENRULECALL) -o $@ $<
ATC/AS_Structured.der.hs: Syntax/AS_Structured.der.hs $(GENRULES)
$(GENRULECALL2) -o $@ $<
ATC/AS_Architecture.der.hs: Syntax/AS_Architecture.der.hs $(GENRULES)
$(GENRULECALL2) -i ATC.AS_Structured -o $@ $<
ATC/AS_Library.der.hs: Syntax/AS_Library.der.hs $(GENRULES)
$(GENRULECALL2) -i ATC.AS_Architecture -i ATC.LibName -o $@ $<
ATC/GlobalAnnotations.der.hs: Common/GlobalAnnotations.hs $(GENRULES)
$(GENRULECALL) -i ATC.AS_Annotation -i ATC.Result -o $@ $<
ATC/Prover.der.hs: Logic/Prover.hs $(GENRULES)
$(GENRULECALL) -x Logic.Prover.ProverTemplate \
-i ATC.AS_Annotation -i ATC.OrderedMap -o $@ $<
ATC/DevGraph.der.hs: Static/DevGraph.hs $(GENRULES)
$(GENRULECALL2) -i ATC.LibName -o $@ $<
# ATC files for every logic
CASL_files = CASL/Sublogic.hs CASL/Morphism.hs CASL/Sign.hs \
CASL/AS_Basic_CASL.der.hs
HasCASL_files = Common/Prec.hs HasCASL/As.hs HasCASL/Le.hs HasCASL/Sublogic.hs
Isabelle_files = Isabelle/IsaSign.hs
Propositional_files = Propositional/Sign.hs Propositional/Morphism.hs \
Propositional/AS_BASIC_Propositional.hs Propositional/Symbol.hs \
Propositional/Sublogic.hs
RS_files = RelationalScheme/AS.hs RelationalScheme/Sign.hs
Modal_files = Modal/AS_Modal.hs Modal/ModalSign.hs
Temporal_files = Temporal/AS_BASIC_Temporal.hs Temporal/Sign.hs \
Temporal/Symbol.hs Temporal/Morphism.hs
ConstraintCASL_files = ConstraintCASL/AS_ConstraintCASL.hs
CoCASL_files = CoCASL/AS_CoCASL.hs CoCASL/CoCASLSign.hs
COL_files = COL/AS_COL.hs COL/COLSign.hs
CspCASL_files = CspCASL/AS_CspCASL.hs CspCASL/AS_CspCASL_Process.hs \
CspCASL/SignCSP.hs CspCASL/Morphism.hs
CASL_DL_files = CASL_DL/AS_CASL_DL.hs CASL_DL/Sign.hs CASL_DL/Sublogics.hs
SoftFOL_files = SoftFOL/Sign.hs
OWL_files = OWL/Sign.hs OWL/Sublogic.hs OWL/Morphism.hs
VSE_files = VSE/As.hs
OMDoc_files = OMDoc/OMDocInterface.hs
DFOL_files = DFOL/AS_DFOL.hs DFOL/Sign.hs DFOL/Morphism.hs DFOL/Symbol.hs
Maude_files = Maude/Sign.hs Maude/Morphism.hs Maude/Sentence.hs \
Maude/Symbol.hs Maude/AS_Maude.hs
# ATC DrIFT-rule generation for logics
CASL/ATC_CASL.der.hs: $(CASL_files) $(GENRULES)
$(GENRULECALL) -i ATC.GlobalAnnotations -o $@ $(CASL_files)
RelationalScheme/ATC_RelationalScheme.der.hs: $(RS_files) $(GENRULES)
$(GENRULECALL) -i ATC.GlobalAnnotations -o $@ $(RS_files)
Propositional/ATC_Propositional.der.hs: $(Propositional_files) $(GENRULES)
$(GENRULECALL) -i ATC.AS_Annotation -o $@ $(Propositional_files)
HasCASL/ATC_HasCASL.der.hs: $(HasCASL_files) $(GENRULES)
$(GENRULECALL) -i ATC.GlobalAnnotations -o $@ $(HasCASL_files)
Isabelle/ATC_Isabelle.der.hs: $(Isabelle_files) $(GENRULES)
$(GENRULECALL) -o $@ $(Isabelle_files)
Modal/ATC_Modal.der.hs: $(Modal_files) $(GENRULES)
$(GENRULECALL) -i CASL.ATC_CASL -o $@ $(Modal_files)
Temporal/ATC_Temporal.der.hs: $(Temporal_files) $(GENRULES)
$(GENRULECALL) -i CASL.ATC_CASL -o $@ $(Temporal_files)
ConstraintCASL/ATC_ConstraintCASL.der.hs: $(ConstraintCASL_files) $(GENRULES)
$(GENRULECALL) -i CASL.ATC_CASL -o $@ $(ConstraintCASL_files)
CASL_DL/ATC_CASL_DL.der.hs: $(CASL_DL_files) $(GENRULES)
$(GENRULECALL) -i CASL.ATC_CASL -o $@ $(CASL_DL_files)
CoCASL/ATC_CoCASL.der.hs: $(CoCASL_files) $(GENRULES)
$(GENRULECALL) -i CASL.ATC_CASL -o $@ $(CoCASL_files)
COL/ATC_COL.der.hs: $(COL_files) $(GENRULES)
$(GENRULECALL) -i CASL.ATC_CASL -o $@ $(COL_files)
CspCASL/ATC_CspCASL.der.hs: $(CspCASL_files) $(GENRULES)
$(GENRULECALL) -i CASL.ATC_CASL -o $@ $(CspCASL_files)
SoftFOL/ATC_SoftFOL.der.hs: $(SoftFOL_files) $(GENRULES)
$(GENRULECALL) -i ATC.AS_Annotation -o $@ $(SoftFOL_files)
OWL/ATC_OWL.der.hs: $(OWL_files) $(GENRULES)
$(GENRULECALL) -i OWL.ReadWrite -i ATC.AS -o $@ $(OWL_files)
VSE/ATC_VSE.der.hs: $(VSE_files) $(GENRULES)
$(GENRULECALL) -x VSE.As.FoldRec -i CASL.ATC_CASL -o $@ $(VSE_files)
OMDoc/ATC_OMDoc.der.hs: $(OMDoc_files) $(GENRULES)
$(GENRULECALL) -i OMDoc.ATerm -i OMDoc.Binary -o $@ $(OMDoc_files)
DFOL/ATC_DFOL.der.hs: $(DFOL_files) $(GENRULES)
$(GENRULECALL) -i ATC.AS_Annotation -o $@ $(DFOL_files)
Maude/ATC_Maude.der.hs: $(Maude_files) $(GENRULES)
$(GENRULECALL) -i ATC.AS_Annotation -o $@ $(Maude_files)
# all ATC .der.hs files for all logics
atc_logic_files = $(foreach logic, $(logics), $(logic)/ATC_$(logic).der.hs)
generated_rule_files = $(atc_der_files) $(atc_logic_files)
# a rule to create all .der.hs files
genRules: $(generated_rule_files)
# the final ATC target files created by DriFT
gendrifted_files = $(patsubst %.der.hs, %.hs, $(generated_rule_files))
# files to be processed by utils/InlineAxioms
inline_axiom_files = Comorphisms/CASL2PCFOL.hs \
Comorphisms/Modal2CASL.hs Comorphisms/CASL2TopSort.hs \
Comorphisms/CASL2SubCFOL.hs CASL_DL/PredefinedSign.hs
gen_inline_axiom_files = $(patsubst %.hs,%.inline.hs, $(inline_axiom_files))
# all sources that need to be created before ghc can be called
derived_sources += $(drifted_files) Driver/Version.hs $(happy_files) \
$(inline_axiom_files) Modal/ModalSystems.hs $(hs_der_files)
# sources that have {-# OPTIONS -cpp #-}
cpp_sources = hets.hs $(happy_files) \
CASL/Logic_CASL.hs \
Common/Exception.hs \
Common/ATerm/ConvInstances.hs \
Comorphisms/KnownProvers.hs \
Comorphisms/LogicGraph.hs \
Comorphisms/LogicList.hs \
Driver/WriteFn.hs \
GUI/GraphMenu.hs \
GUI/ShowGraph.hs \
GUI/Utils.hs \
Isabelle/CreateTheories.hs \
OWL/Logic_OWL.hs \
CMDL/InfoCommands.hs \
CMDL/Interface.hs \
Propositional/Logic_Propositional.hs \
SoftFOL/Logic_SoftFOL.hs \
VSE/Logic_VSE.hs \
VSE/Prove.hs \
Proofs/VSE.hs \
Common/BinaryInstances.hs
# further sources that should be excluded from haddock-0.8
nondoc_sources = $(wildcard utils/DrIFT-src/*.hs) \
$(wildcard utils/DrIFT-src/*.lhs) \
$(wildcard utils/GenerateRules/*.hs) \
$(wildcard utils/InlineAxioms/*.hs) \
$(wildcard utils/itcor/*.hs) \
$(cpp_sources) $(pfe_sources) $(gen_inline_axiom_files) \
$(generated_rule_files) \
$(PFE_TOOLDIR)/property/parse2/Parser/PropParser.hspp \
Modal/GeneratePatterns.inline.hs \
Haskell/PreludeString.append.hs Haskell/ProgramaticaPrelude.hs \
SoftFOL/MathServCommunication.hs \
$(patsubst %.hs, %.der.hs, $(drifted_files))
hspp_sources = $(patsubst %.hs, %.hspp, $(cpp_sources))
# this variable holds the modules that should be documented
doc_sources = $(filter-out $(nondoc_sources), $(sources) $(hspp_sources))
####################################################################
### targets
.PHONY : all hets-opt hets-optimized clean o_clean clean_pretty \
real_clean bin_clean package_clean distclean packages \
programatica_pkg maintainer-clean annos \
check capa hacapa h2h h2hf showKP clean_genRules genRules \
count doc fromKif derivedSources release cgi ghci
.SECONDARY : %.hs %.d $(generated_rule_files) $(gen_inline_axiom_files)
$(SETUP): utils/Setup.hs
$(HC) --make -O -o $@ $<
packages: programatica_pkg
programatica_pkg:
hets-opt:
$(MAKE) distclean
$(MAKE) derivedSources
$(MAKE) clean
$(MAKE) hets-optimized
hets-optimized: $(derived_sources)
$(HC) --make -O -o hets hets.hs $(HC_OPTS)
cgi:
$(MAKE) distclean
$(MAKE) derivedSources
$(MAKE) clean
$(MAKE) hets.cgi
hets.cgi: $(sources) GUI/hets_cgi.hs
ghc --make GUI/hets_cgi.hs -o $@ $(HC_OPTS) -O
hets_maintainers.txt: $(sources)
@echo 'File : Maintainer' > $@
@echo -n Generating $@ " "
@egrep -m 1 "Maintainer" $(sources) | \
sed -e 's/: *Maintainer *: */ : /' >> $@
@echo " done"
# count lines of code
count: $(sources)
wc -l $(sources)
# Documentation via haddock
doc: docs/index.html
ifneq ($(findstring 2.,$(HADDOCKVERSION)),)
HADDOCK_OPTS = $(addprefix --optghc=, $(HC_OPTS))
docs/index.html:
$(RM) -r docs
mkdir docs
$(HADDOCK) -o docs -h -v -s ../%F \
-t 'Hets - the Heterogeneous Tool Set' \
-p Hets-Haddock-Prologue.txt $(HADDOCK_OPTS) \
Syntax/ADoc.hs $(filter-out Test.hs, $(wildcard *.hs))
else
# generate haddock documentation with links to sources
# the interface treatment is stolen from uni/mk/suffix.mk
docs/index.html: $(doc_sources)
$(RM) -r docs
mkdir docs
cp -r -L ../uni/www docs/www || mkdir docs/www
HINTERFACES0=`find -L docs/www -name '*.haddock' \
-printf "--read-interface=www/%P,%p "` ; \
HINTERFACES=`echo $$HINTERFACES0 | \
$(PERL) -pe 's+/[^/]*.haddock,+,+g'` ; \
$(HADDOCK) -o docs -h -v -s ../%F $$HINTERFACES \
-t 'Hets - the Heterogeneous Tool Set' \
-p Hets-Haddock-Prologue.txt $(doc_sources)
endif
derivedSources: $(derived_sources) $(hspp_sources)
$(DRIFT): $(DRIFT_deps)
(cd utils/DrIFT-src; $(HC) --make DrIFT.hs -o ../DrIFT)
$(GENRULES): $(DRIFT) $(GENERATERULES_deps)
(cd utils/GenerateRules; \
$(HC) --make -i../DrIFT-src -i../.. $(HC_WARN) \
GenerateRules.hs -o ../genRules)
# "-package hssource" for ghc-5.04.2
$(INLINEAXIOMS): $(INLINEAXIOMS_deps)
$(HC) --make utils/InlineAxioms/InlineAxioms.hs $(HC_WARN) $(HC_PROF) \
-i../.. -o $(INLINEAXIOMS)
utils/appendHaskellPreludeString: utils/appendHaskellPreludeString.hs
$(HC) --make -o $@ $<
# release management
REV = trunk
release:
$(RM) -r Hets
svn co https://svn-agbkb.informatik.uni-bremen.de/Hets/$(REV) Hets
$(RM) -r uni
if [ -d ../uni ] ; then ln -s ../uni uni ; fi
$(RM) -r programatica
if [ -d ../programatica ] ; then \
mkdir programatica; \
ln -s ../../programatica/tools programatica/tools ; fi
(cd Hets; $(MAKE) derivedSources; $(MAKE) clean; \
cp Makefile Makefile.orig; \
cp ReleaseMakefile Makefile; \
./clean.sh; \
find . -name .svn -o -name \*.o -o -name \*.hi | xargs $(RM) -r; \
$(RM) clean.*; utils/replaceAllHeaders.sh)
$(TAR) cvf Hets.tar Hets
# Common/LaTeX_maps.hs generation
utils/genItCorrections: $(GENITCORRECTIONS_deps)
$(HC) --make -o $@ $<
pretty/LaTeX_maps.hs: utils/words.pl utils/genItCorrections \
pretty/words.input pretty/fonts.input pretty/width-table.tex.templ
@echo -n "Generating pretty/LaTeX_maps.hs ... "
@(cd pretty >/dev/null; $(PERL) ../utils/words.pl > words.pl.log)
@(cd pretty >/dev/null; ../utils/genItCorrections \
gen_it_characters gen_it_words >> LaTeX_maps.hs)
@echo "ready"
@echo "please copy the file manually to Common"
### clean up
clean_genRules:
$(RM) $(generated_rule_files) $(gendrifted_files) $(hspp_sources) \
$(hs_clean_files)
clean: bin_clean o_clean clean_pretty
### removes all *.o, *.hi and *.p_o files in all subdirectories
o_clean:
find . -name \*.o -o -name \*.hi -o -name \*.p_o \
-o -name \*.exe -o -name \*.exe.manifest | xargs $(RM)
### remove binaries
bin_clean:
$(RM) hets
$(RM) hets.cgi
$(RM) $(SETUP)
$(RM) $(TESTTARGETS)
clean_pretty:
$(RM) pretty/*.c.* pretty/*.h.* pretty/gen_it_* \
pretty/generated_words.tex
### additionally removes the library files
real_clean: clean
### clean user packages
package_clean:
$(HCPKG) unregister HAIFA --user || exit 0
$(HCPKG) unregister programatica --user || exit 0
$(HCPKG) unregister syb-generics --user || exit 0
### additionally removes generated files not in the CVS tree
distclean: clean clean_genRules
$(RM) $(derived_sources)
$(RM) Modal/GeneratePatterns.inline.hs utils/appendHaskellPreludeString
$(RM) utils/DrIFT utils/genRules $(INLINEAXIOMS)
$(RM) utils/genItCorrections pretty/LaTeX_maps.hs pretty/words.pl.log
maintainer-clean: distclean package_clean
$(RM) -r $(HOME)/.ghc/$(ARCH)-$(OSBYUNAME)-hets-packages
### interactive
ghci: $(derived_sources)
ghci $(HC_OPTS)
### Kif parser
fromKif: CASL/fromKif
### Annos parser
annos: Common/annos
### CASL parser
capa: CASL/capa
### HasCASL parser
hacapa: HasCASL/hacapa
### Haskell analysis
hana: Haskell/hana
### Haskell to Isabelle-HOLCF translation
h2hf: Haskell/h2hf
Haskell/h2hf: Haskell/h2hf.hs Haskell/*.hs Isabelle/*.hs Common/*.hs \
Common/Lib/*.hs Comorphisms/*.hs
$(HC) -O --make -o $@ $< $(HC_OPTS)
### HasCASL to Haskell translation
h2h: Haskell/h2h
### test program to check the known provers
showKP: Comorphisms/test/showKP
### run tests in other directories
check: $(TESTTARGETS)
for i in $(TESTDIRS); do $(MAKE) -C $$i check; done
## Preparing the version of Hets
Driver/Version.hs: Driver/Version.in version_nr
$(RM) $@
LANG=C $(PERL) utils/build_version.pl version_nr \
< Driver/Version.in > $@
chmod 444 $@
## two hardcoded dependencies for a correct generation of Version.hs
Driver/Options.hs Driver/WriteFn.hs Driver/ReadFn.hs: Driver/Version.hs
hets.hs: Driver/Version.hs
ATC/DevGraph.hs: Static/DevGraph.hs
## two dependencies for avoidence of circular prerequisites
CASL_DEPENDENT_BINARIES= hets CASL/capa CASL/fromKif \
Common/annos Common/test_parser Comorphisms/test/showKP \
CspCASL/print_csp HasCASL/hacapa Haskell/h2h Haskell/h2hf \
Haskell/hana Haskell/wrap Isabelle/isa Syntax/hetpa
$(CASL_DEPENDENT_BINARIES): $(sources) $(derived_sources)
#? CASL_DL/Logic_CASL_DL.hs: CASL_DL/PredefinedSign.hs
## suffix rules
.SUFFIXES:
## rule for GHC
%: %.hs packages
$(HC) --make -o $@ $< $(HC_OPTS)
## rule for HAPPY
%.hs: %.y
$(HAPPY) -o $@.tmp $<
echo "{-# OPTIONS -w #-}" > $@
cat $@.tmp >> $@
$(RM) $@.tmp
## rule for DrIFT
%.hs: %.der.hs $(DRIFT)
$(RM) $@
($(DRIFT_ENV); export DERIVEPATH; $(DRIFT) $< > $@)
chmod 444 $@
## rule for inlineAxioms
%.hs: %.inline.hs $(INLINEAXIOMS)
$(RM) $@
$(INLINEAXIOMS) $< > $@
chmod 444 $@
## rule for cpp and haddock
%.hspp: %.hs
$(HC) -E -cpp -D__HADDOCK__ \
-DUNI_PACKAGE -DCASLEXTENSIONS -DPROGRAMATICA -optP -P $<
## compiling rules for object and interface files
%.o %.hi: %.hs
$(HC) -c $< $(HC_OPTS)
%.o %.hi: %.lhs
$(HC) -c $< $(HC_OPTS)
## compiling rules for dependencies
%.d : %.hs
$(HC) -M $< $(HC_OPTS) -optdep-f -optdep$@
%.d : %.lhs
$(HC) -M $< $(HC_OPTS) -optdep-f -optdep$@
## Rule to generate hs files from glade files. Needed for GTK
%.hs: %.glade utils/appendHaskellPreludeString \
GUI/Glade/Template.append.hs
b=`basename $< .glade`; \
cat GUI/Glade/Template.append.hs | sed "s/\%s/$$b/" | \
utils/appendHaskellPreludeString $< > $@
## generate the inline file for the predefined CASL_DL sign
CASL_DL/PredefinedSign.inline.hs: \
CASL_DL/PredefinedSign.inline.hs.in utils/appendHaskellPreludeString \
CASL_DL/PredDatatypes.het
$(RM) $@
utils/appendHaskellPreludeString CASL_DL/PredDatatypes.het \
< CASL_DL/PredefinedSign.inline.hs.in > $@
echo " )" >> $@
chmod 444 $@
# Warning: Don't change the order of the depencies!!
CASL_DL/PredDatatypes.het: utils/transformLibAsBasicSpec.pl \
CASL_DL/Datatypes.het
$(RM) $@
$(PERL) $+ > $@
chmod 444 $@
## rule for Modal/ModalSystems.hs needed for ModalLogic Translation
# uses intransparently utils/outlineAxioms
Modal/ModalSystems.hs: Modal/GeneratePatterns.inline.hs.in \
utils/genTransMFormFunc.pl $(INLINEAXIOMS)
$(RM) $@
$(PERL) utils/genTransMFormFunc.pl $< $@
chmod 444 $@
# directory for installers
INSTALLER_DIR = ../installers
ifeq ($(strip $(HETS_VERSION)),)
HETS_VERSION := `cat version_nr`
# or `date +%F`
endif
# prepare installer creation
initialize_installer:
mkdir -p $(INSTALLER_DIR)
sed "s/^\(HETS_VERSION =\).*/\1$(HETS_VERSION)/" Makefile.installer \
> $(INSTALLER_DIR)/Makefile
@echo Please do
@echo " -> cd $(INSTALLER_DIR)"
@echo " -> make"
@echo and wait until it is finished
# check out java parts for OWL
owl_java:
svn co \
https://owlapi.svn.sourceforge.net/svnroot/owlapi/owl1_1/trunk \
OWL/java/OwlApi
initialize_java: owl_java
ant -q init
java-libs:
ant -q java-libs
java-files:
ant -q java-files
java-clean:
ant -q java-clean