From 9b171832c9aec2956b5bfe9e488c2751d1e37dbc Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 13:57:04 -0400 Subject: move make configuration stuff to mk/ --- mk/architecture.conf | 1 + mk/c.conf | 5 +++++ mk/posix.conf | 6 ++++++ mk/wordsize.conf | 2 ++ mk/xopen.conf | 5 +++++ 5 files changed, 19 insertions(+) create mode 100644 mk/architecture.conf create mode 100644 mk/c.conf create mode 100644 mk/posix.conf create mode 100644 mk/wordsize.conf create mode 100644 mk/xopen.conf (limited to 'mk') 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) -- cgit v1.2.1