2 # Variables included by all Makefiles.
5 ## Directory definitions
7 libdir = $(slateroot
)/lib
8 mobiusdir
= $(slateroot
)/src
/mobius
9 pluginsdir
= $(slateroot
)/src
/plugins
10 testdir
= $(slateroot
)/tests
13 datadir = $(prefix)/share
/slate
14 exec_prefix = $(prefix)/bin
16 includedir = $(prefix)/include
17 mandir = $(prefix)/share
/man
18 man1dir = $(mandir)/man1
19 infodir = $(prefix)/info
20 lispdir
= $(prefix)/share
/emacs
/site-lisp
23 ## Build modes. Set on command line using QUIET=1, DEBUG=1 or PROFILE=1
32 SILENT_ERRORS
:= 2> $(DEVNULL
)
33 LIBTOOL_FLAGS
+= --silent
39 CFLAGS
+= -DSLATE_BUILD_TYPE
="\"Debug\""
43 COPTFLAGS
+= -pg
-g
-O2
44 CFLAGS
+= -DSLATE_BUILD_TYPE
="\"Profile\""
47 CFLAGS
+= -DSLATE_BUILD_TYPE
="\"Optimized\""
52 ## All required executables
59 WGET
:= wget
-q
--cache
=off
67 ## Platform independent definitions
70 CFLAGS
+= -DSLATE_DATADIR
=$(datadir) -D_POSIX_SOURCE
=200112L -D_POSIX_C_SOURCE
=200112L
71 CFLAGS
+= $(COPTFLAGS
) -Wall
-Wno-unknown-pragmas
-pthread
$(PRINT_DEBUG
) $(EXTRACFLAGS
) $(INCLUDES
)
72 # include -pedantic later fixme
74 ## Determine the host system's byte order.
75 ## This creates a temporary test executable in the $(slateroot) directory
76 ## since we can guarantee write permissions there on all platforms.
78 BYTE_ORDER_FN
:= $(slateroot
)/byteorder
79 BYTE_ORDER_SRC
:= "int main(){union{long l;char c[sizeof(long)];}u;u.l=1;return(u.c[sizeof(long)-1]==1);}"
80 BYTE_ORDER
:= $(shell echo
$(BYTE_ORDER_SRC
) > $(BYTE_ORDER_FN
).c
)
81 BYTE_ORDER
:= $(shell $(CC
) -o
$(BYTE_ORDER_FN
) $(BYTE_ORDER_FN
).c
)
82 BYTE_ORDER
:= $(shell $(BYTE_ORDER_FN
); echo
$$?
)
83 BYTE_ORDER_
:= $(shell $(RM
) $(BYTE_ORDER_FN
).
* $(BYTE_ORDER_FN
) 1>&2)
84 ifeq ($(BYTE_ORDER
),0)
85 BYTE_ORDER
:= LITTLE_ENDIAN
86 BYTE_ORDER_PREFIX
:= little
88 BYTE_ORDER
:= BIG_ENDIAN
89 BYTE_ORDER_PREFIX
:= big
95 CCVERSION
:= $(shell $(CC
) -dumpversion
)
97 LDFLAGS
:= # -avoid-version
99 #PLUGINS := platform.so posix.so pipe.so
100 #PLUGINS := x-windows.so
102 HOST_SYSTEM
:= $(shell uname
-s
)
104 INSTALL_MODE
:= -m
644
105 CPU_TYPE
:= `uname -m`
106 VM_LIBRARIES
= -lm
-ldl
-lpthread
109 VMDIR
:= $(slateroot
)/src
/vm
110 VM
:= $(VMDIR
)/$(VMNAME
)
111 DEFAULT_IMAGE ?
= slate.image
112 KERNEL_IMAGES
:= kernel.new.
*.
$(WORD_SIZE
).
*.image
113 DEFAULT_KERNEL_IMAGE ?
= $(shell ls
-t
$(KERNEL_IMAGES
) | head
-1)
115 CFLAGS_x-windows.c
=`pkg-config --cflags x11` `pkg-config --cflags cairo` -Werror
116 LDFLAGS_x-windows.lo
=`pkg-config --libs x11` `pkg-config --libs cairo`
117 CFLAGS_cocoa-windows.c
=`pkg-config --cflags cocoa` `pkg-config --cflags cairo`
118 LDFLAGS_cocoa-windows.lo
=`pkg-config --libs cocoa` `pkg-config --libs cairo`
119 CFLAGS_glib-wrapper.c
=`pkg-config --cflags glib-2.0`
120 LDFLAGS_glib-wrapper.lo
=`pkg-config --libs glib-2.0` `pkg-config --libs gobject-2.0`
121 CFLAGS_gdk-wrapper.c
=`pkg-config --cflags gdk-2.0`
122 LDFLAGS_gdk-wrapper.lo
=`pkg-config --libs gdk-2.0` `pkg-config --libs gthread-2.0`
123 CFLAGS_gtk-wrapper.c
=`pkg-config --cflags gtk+-2.0`
124 LDFLAGS_gtk-wrapper.lo
=`pkg-config --libs gtk+-2.0`
125 CFLAGS_llvm-wrapper.c
=`llvm-config --cflags`
126 LDFLAGS_llvm-wrapper.lo
=
130 PRINT_DEBUG_G
=-DPRINT_DEBUG_DEFUN
-DPRINT_DEBUG_GC_1
-DPRINT_DEBUG_OPCODES
131 PRINT_DEBUG_Y
= -DPRINT_DEBUG_STACK_POINTER
-DPRINT_DEBUG_STACK_PUSH
-DPRINT_DEBUG_FOUND_ROLE
-DPRINT_DEBUG_FUNCALL
132 PRINT_DEBUG_X
=-DPRINT_DEBUG
-DPRINT_DEBUG_OPCODES
-DPRINT_DEBUG_INSTRUCTION_COUNT
-DPRINT_DEBUG_CODE_POINTER
-DPRINT_DEBUG_DISPATCH
133 PRINT_DEBUG_1
=-DPRINT_DEBUG_DEFUN
-DPRINT_DEBUG_GC_1
134 PRINT_DEBUG_4
=-DPRINT_DEBUG_DEFUN
-DPRINT_DEBUG_GC
-DPRINT_DEBUG_OPCODES
-DPRINT_DEBUG_CODE_POINTER
-DPRINT_DEBUG_ENSURE
-DPRINT_DEBUG_STACK
135 PRINT_DEBUG_3
=-DPRINT_DEBUG_DEFUN
-DPRINT_DEBUG_GC
-DPRINT_DEBUG_OPTIMIZER
-DPRINT_DEBUG_PIC_HITS
-DPRINT_DEBUG_UNOPTIMIZER
136 PRINT_DEBUG_2
=-DPRINT_DEBUG_DEFUN
-DPRINT_DEBUG
-DPRINT_DEBUG_OPCODES
-DPRINT_DEBUG_INSTRUCTION_COUNT
-DPRINT_DEBUG_CODE_POINTER
-DPRINT_DEBUG_DISPATCH
-DPRINT_DEBUG_GC_MARKINGS
137 PRINT_DEBUG
=$(PRINT_DEBUG_1
)
139 ## Determine CPU type
141 ## TODO: Sparc detection for SunOS?
142 ## TODO: Base CPU type on real information, not just generic OS variant
144 ## CPU-type specific overrides. Any of the variables above may be changed here.
151 CFLAGS
+= -DVERSION
="\"$(VERSION)\""
154 CFLAGS
+=-DSLATE_DEFAULT_IMAGE
=$(DEFAULT_IMAGE
)
157 CFLAGS
+= -m
$(WORD_SIZE
)
160 #ifeq ($(CPU_TYPE), i686)
161 # CFLAGS += -m$(WORD_SIZE)
164 #ifeq ($(CPU_TYPE), x86_64)
165 # CFLAGS += -m$(WORD_SIZE)
168 ## Platform specific overrides. Any of the variables above may be changed here.
170 ifeq ($(HOST_SYSTEM
), AIX
)
172 PLUGINS
:= platform.so posix.so pipe.so
175 ifeq ($(HOST_SYSTEM
), BeOS
)
179 ifeq ($(findstring CYGWIN
,$(HOST_SYSTEM
)), CYGWIN
)
181 LDFLAGS
+= -no-undefined
184 # DEVNULL := NUL # Required if using cmd.exe and not bash.
187 ifeq ($(HOST_SYSTEM
), Darwin
)
188 # LIBTOOL := MACOSX_DEPLOYMENT_TARGET=10.3 glibtool
190 PLUGINS
:= cocoa-windows.so
193 ifeq ($(HOST_SYSTEM
), DragonFly
)
197 ifeq ($(HOST_SYSTEM
), FreeBSD
)
202 ifeq ($(HOST_SYSTEM
), HP-UX
)
205 PLUGINS
:= platform.so posix.so pipe.so
208 ifeq ($(HOST_SYSTEM
), Linux
)
210 PLUGINS
+= gtk-wrapper.so gdk-wrapper.so glib-wrapper.so llvm-wrapper.so x-windows.so
213 ifeq ($(findstring MINGW
,$(HOST_SYSTEM
)), MINGW
)
218 ifeq ($(HOST_SYSTEM
), NetBSD
)
222 ifeq ($(HOST_SYSTEM
), SunOS
)
223 PLUGINS
:= platform.so posix.so pipe.so
224 # Work around GCC Ultra SPARC alignment bug
225 # TODO: Should be CPU specific.
226 COPTFLAGS
:= $(subst -O2
,-O0
, $(COPTFLAGS
))
229 PLUGINS
:= $(subst .so
,$(LIB_SO_EXT
), $(PLUGINS
))