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