diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 13:57:04 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 13:57:04 -0400 |
| commit | 9b171832c9aec2956b5bfe9e488c2751d1e37dbc (patch) | |
| tree | 85500a0c45d388fa3aef8a83097ae21d91e0d427 /mk | |
| parent | fb7397b343b874acee9d8aff1bf9eb303ec2d403 (diff) | |
move make configuration stuff to mk/
Diffstat (limited to 'mk')
| -rw-r--r-- | mk/architecture.conf | 1 | ||||
| -rw-r--r-- | mk/c.conf | 5 | ||||
| -rw-r--r-- | mk/posix.conf | 6 | ||||
| -rw-r--r-- | mk/wordsize.conf | 2 | ||||
| -rw-r--r-- | mk/xopen.conf | 5 |
5 files changed, 19 insertions, 0 deletions
diff --git a/mk/architecture.conf b/mk/architecture.conf new file mode 100644 index 00000000..e41c7a05 --- /dev/null +++ b/mk/architecture.conf @@ -0,0 +1 @@ +x86 Intel x86 diff --git a/mk/c.conf b/mk/c.conf new file mode 100644 index 00000000..5e7740a9 --- /dev/null +++ b/mk/c.conf @@ -0,0 +1,5 @@ +1 ISO/IEC 9899:1990, AKA ANSI X3.159-1989, ANSI C, ISO C, C89, C90 +199409 ISO/IEC 9899:1990/AMD1:1995, AKA C94, C95 +199901 ISO/IEC 9899:1999, AKA C99 +201112 ISO/IEC 9899:2011, AKA C11 +201710 ISO/IEC 9899:2018, AKA C18 diff --git a/mk/posix.conf b/mk/posix.conf new file mode 100644 index 00000000..415a0458 --- /dev/null +++ b/mk/posix.conf @@ -0,0 +1,6 @@ +1 POSIX.1-1990 (includes POSIX.1-1988, implies C89) +2 POSIX.1-1990 plus POSIX.2-1992 +199309 POSIX.1b-1993 (includes POSIX.1-1990) +199506 POSIX.1-1996 +200112 POSIX.1-2001 (implies C99) +200809 POSIX.1-2008 (implies C99) diff --git a/mk/wordsize.conf b/mk/wordsize.conf new file mode 100644 index 00000000..08fdc23a --- /dev/null +++ b/mk/wordsize.conf @@ -0,0 +1,2 @@ +32 32-bit +64 64-bit diff --git a/mk/xopen.conf b/mk/xopen.conf new file mode 100644 index 00000000..32748b73 --- /dev/null +++ b/mk/xopen.conf @@ -0,0 +1,5 @@ +400 Single Unix Specification, version 1 + (includes POSIX.1-1990 and POSIX.2-1992) +500 Single Unix Specification, version 2 (includes POSIX.1-1995) +600 Single Unix Specification, version 3 (includes POSIX.1-2001) +700 Single Unix Specification, version 4 (includes POSIX.1-2008) |
