source: branches/libc-0.6/src/emx/version.smak@ 2457

Last change on this file since 2457 was 2457, checked in by bird, 20 years ago

it's OFFICIAL_BIRD_VERSION not _BUILD! Rebuilding ga as ga2.

  • Property cvs2svn:cvs-rev set to 1.25
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 893 bytes
Line 
1# Define the version of the libc and toolkit
2
3# High part of version number
4VH = 0
5# Middle part of version number
6ifdef OFFICIAL_BIRD_VERSION
7VM = 6
8else
9VM = 6x
10endif
11# Low part of version number
12VL = 0
13
14# The name of this package
15PACKAGE = GNU C for OS/2 runtime and tools
16
17# Full version number
18VERSION = $(VH).$(VM).$(VL)
19
20# The flag for C compiler to pass the VERSION macro to preprocessor
21CFLAGS.DEF.VERSION = -DVERSION=\"$(VERSION)\"
22
23# INNOTEK_VERSION is normally defined in the environment by a toplevel makefile.
24ifndef INNOTEK_VERSION
25ifdef OFFICIAL_BIRD_VERSION
26export INNOTEK_VERSION ?= (Bird Build $(shell date '+%Y-%m-%d %H:%M'))
27else
28export INNOTEK_VERSION ?= (Non-Bird Build $(shell date '+%Y-%m-%d %H:%M'))
29endif
30endif
31CFLAGS.DEF.VERSION += '-DINNOTEK_VERSION=" $(INNOTEK_VERSION)"'
32
33# Copyright
34COPYRIGHT = Copyright (c) 2003-2005 InnoTek Systemberatung GmbH
Note: See TracBrowser for help on using the repository browser.