summaryrefslogtreecommitdiffhomepage
path: root/sysinfo/host/native.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-30 18:18:26 -0500
committermidipix <writeonce@midipix.org>2018-12-30 18:24:34 -0500
commitdee5eebcc15e8cb374498a5aa8b2dc4d25c34cb4 (patch)
treeb6afc44d7cdd7e0c2ea6cf724e12459e437e0b2b /sysinfo/host/native.mk
parent80edc73c18ca1d4b6e69d78d61e17f062734449d (diff)
downloadntux-dee5eebcc15e8cb374498a5aa8b2dc4d25c34cb4.tar.bz2
ntux-dee5eebcc15e8cb374498a5aa8b2dc4d25c34cb4.tar.xz
build system: major overhaul: removed sysinfo, integrated ccenv.
Diffstat (limited to 'sysinfo/host/native.mk')
-rw-r--r--sysinfo/host/native.mk45
1 files changed, 0 insertions, 45 deletions
diff --git a/sysinfo/host/native.mk b/sysinfo/host/native.mk
deleted file mode 100644
index f0cf720..0000000
--- a/sysinfo/host/native.mk
+++ /dev/null
@@ -1,45 +0,0 @@
-include $(PROJECT_DIR)/sysinfo/os/$(NATIVE_OS).mk
-
-OS = $(NATIVE_OS)
-HOST_BITS = $(NATIVE_OS_BITS)
-HOST_UNDERSCORE = $(NATIVE_OS_UNDERSCORE)
-
-ifeq ($(OS),linux)
- ifeq ($(HOST_BITS),32)
- ARCH = i386
- else ifeq ($(HOST_BITS),64)
- ARCH = x86_64
- endif
-endif
-
-ifeq ($(OS),midipix)
- ifeq ($(HOST_BITS),32)
- ARCH = nt32
- else ifeq ($(HOST_BITS),64)
- ARCH = nt64
- endif
-endif
-
-ifeq ($(OS),mingw)
- ifeq ($(HOST_BITS),32)
- ARCH = w32
- else ifeq ($(HOST_BITS),64)
- ARCH = w64
- endif
-endif
-
-ifeq ($(OS),bsd)
- ifeq ($(HOST_BITS),32)
- ARCH = bsd32
- else ifeq ($(HOST_BITS),64)
- ARCH = bsd64
- endif
-endif
-
-ifeq ($(OS),darwin)
- ifeq ($(HOST_BITS),32)
- ARCH = dw32
- else ifeq ($(HOST_BITS),64)
- ARCH = dw64
- endif
-endif