]> git.buserror.net Git - polintos/scott/priv.git/blob - Makefile.target
32102e48e81398b96eb9557a6e0d4dd34fd2e224
[polintos/scott/priv.git] / Makefile.target
1 ifndef TARGETDEFS
2 TARGETDEFS := done
3
4 ifndef ARCH
5 $(error Please define $$(ARCH).)
6 endif
7
8 VALIDARCH := no
9 DEFS := $(EXTRADEFS)
10
11 ifeq ($(ARCH),x86)
12 CROSS := i686-polintos-
13 DEFS += -DBITFIELD_LE
14 VALIDARCH := yes
15 endif
16
17 ifeq ($(ARCH),x64)
18 CROSS := x86_64-polintos-
19 DEFS += -DBITFIELD_LE
20 VALIDARCH := yes
21 endif
22
23 ifeq ($(VALIDARCH),no)
24 $(error $(ARCH) is not a supported target.)
25 endif
26
27 ifndef USECROSS
28 CROSS :=
29 endif
30
31 ifdef NOSMP
32 DEFS += -D_LL_NOSMP
33 endif
34
35 # C++ prohibits defeferencing a NULL non-POD pointer (and thus
36 # prohibits using offsetof on non-POD types, even though there's no
37 # good reason to disallow it).  Some headers use offsetof on non-POD
38 # types (typically, the types are non-POD only because they have a
39 # constructor to initialize fields to a known state (or with
40 # passed-in values); hardly a reason to make it completely non-POD
41 # and throw out a bazillion otherwise legal actions).
42 #
43 # Thus, since I know of no way (such as a #pragma) for code to
44 # disable a warning itself for a specific region of code, everything
45 # needs to disable this warning.  On one hand, I consider it a bogus
46 # warning, and thus it's not that big of a deal.  On the other hand,
47 # having the warning suppressed means you won't know if your code
48 # will produce the warning in other environments without actually
49 # trying it there.  Oh well; blame the C++ and/or GCC people, not me.
50 #
51 # This warning option requires at least GCC 3.4.  If you want to use
52 # an older compiler, remove this and live with the warnings (as well
53 # as whatever other unknown issues you encounter).
54
55 CXXWARN += $(WARN) -Wno-invalid-offsetof
56
57 ifndef BUILDTYPE
58 BUILDTYPE := user
59 endif
60
61 BUILDNAME := build
62 BASEBUILDDIR := $(TOP)/$(BUILDNAME)
63 ARCHBUILDDIR := $(TOP)/$(BUILDNAME)/$(ARCH)
64
65 ifeq ($(ARCHINDEP),y)
66 BUILDDIR := $(BASEBUILDDIR)/$(BUILDTYPE)/$(COMP)
67 else
68 BUILDDIR := $(ARCHBUILDDIR)/$(BUILDTYPE)/$(COMP)
69 endif
70
71 UTILBUILDDIR := $(BASEBUILDDIR)/build/utils
72 SERVERDIR := $(BUILDDIR)/include/servers
73
74 IFACES := $(BASEBUILDDIR)/build/idl/ifaces
75 GENINCLUDES := $(ARCHBUILDDIR)/build/include/generated
76
77 BUILDCC := g++
78 BUILDCXX := g++
79 CC := $(CROSS)g++
80 CXX := $(CROSS)g++
81 AS := $(CROSS)as
82 LD := $(CROSS)ld
83 STRIP := $(CROSS)strip
84 DEFS += -D_LL_ARCH_$(ARCH) -D_LL_ARCH=$(ARCH)
85 MKDIR := mkdir -p
86 MV := mv
87 RM := rm -f
88 RMDIR := rm -rf
89 LN := ln -s
90 IDLC := $(BASEBUILDDIR)/build/idlcomp/idlc
91 TOUCH := touch
92 BISON := bison
93 FLEX := flex
94
95 # If you want to cross-compile idlc, set BUILD_ENDIAN to LE or BE
96 # and build only the idlc component.  Also, set BUILDCXX to the
97 # cross compiler.
98
99 ifndef BUILD_ENDIAN
100 $(shell $(MKDIR) $(UTILBUILDDIR))
101 $(shell $(BUILDCC) $(TOP)/utils/buildendian.c -o $(UTILBUILDDIR)/buildendian)
102 BUILD_ENDIAN := $(shell $(UTILBUILDDIR)/buildendian)
103 endif
104
105 ifndef BUILD_BFENDIAN
106 $(shell $(MKDIR) $(UTILBUILDDIR))
107 $(shell $(BUILDCC) $(TOP)/utils/buildbfendian.c -o $(UTILBUILDDIR)/buildbfendian)
108 BUILD_BFENDIAN := $(shell $(UTILBUILDDIR)/buildendian)
109 endif
110
111 BUILDDEFS += -DBITFIELD_$(BUILD_BFENDIAN)
112
113 endif