b52f1bd2a2be115854d2d0050f8d6cc73e90fd3e
[ghc-hetmet.git] / ghc / mk / version.mk
1 #
2 # Project-specific version information.
3 #
4 # Note:
5 #   this config file is intended to centralise all
6 #   project version information. To bump up the version
7 #   info on your package, edit this file and recompile
8 #   all the dependents. This file lives in the source tree.
9 #
10 # In the case of the ghc/ project, if you make changes
11 # to this file, you'll *have to* to rebuild the driver
12 # in your build tree(s). The ghc/driver/Makefile has got
13 # a dependency that will force such rebuilding to happen,
14 # but it does require you to do a 'make' in ghc/driver.
15
16 #
17 # Ghc project settings:
18
19 # *ProjectVersion    is treated as a *string*
20 # *ProjectVersionInt is treated as an *integer* (for cpp defines)
21
22 ProjectName       = The Glorious Glasgow Haskell Compilation System
23 ProjectNameShort  = ghc
24 ProjectVersion    = 4.05
25 ProjectVersionInt = 405
26 ProjectPatchLevel = 0
27
28 #
29 # Optionally, you can get the compiler driver to check the
30 # version consistency between the object files being linked.
31
32 # Major numbers must always agree, minor disagreements yield a warning.
33 #
34 # These version numbers are currently separate from the project
35 # version - one (semi-valid) reason for having them separate is that
36 # object files produced by different versions of the compiler need
37 # not be incompatible..
38 HscMajorVersion=40
39 HscMinorVersion=0
40 CcMajorVersion=36
41 CcMinorVersion=1
42
43 #
44 # Interface file version
45 #
46 # If you should happen to make changes to the interface file format
47 # that will break compatibility with older versions, up this variable.
48
49 HscIfaceFileVersion=5
50 #       But watch out: interface file format after Simon's renamer
51 #       hacking isn't the same as before, but it may not make
52 #       any difference for the GHC boot files.
53 #               May 1999