3 # We need to extend flags to the C compiler and the linker
4 # here. sb-posix, sb-grovel, and sb-bsd-sockets depends upon these
5 # being set on x86_64. Setting these in their Makefiles is not
6 # adequate since, while we're building contrib, they can be compiled
7 # directly via ASDF from a non-C-aware module which has these tricky
8 # ones as dependencies.
10 UNAME
:=$(shell uname
-s
)
13 EXTRA_CFLAGS
=-D_XOPEN_SOURCE
=500 -D__EXTENSIONS__
15 ifeq (CYGWIN
,$(findstring CYGWIN
,$(UNAME
)))
16 EXTRA_CFLAGS
=-mno-cygwin
19 export CC SBCL EXTRA_CFLAGS EXTRA_LDFLAGS
21 all: $(EXTRA_ALL_TARGETS
)
23 $(SBCL
) --eval
'(defvar *system* "$(SYSTEM)")' --load ..
/asdf-stub.lisp
--eval
'(quit)'
26 echo
"(asdf:operate (quote asdf:load-op) :$(SYSTEM))" \
27 "(asdf:operate (quote asdf:test-op) :$(SYSTEM))" | \
28 $(SBCL
) --eval
'(load "../asdf/asdf")'
31 install: $(EXTRA_INSTALL_TARGETS
)
32 tar cf
- . |
( cd
"$(BUILD_ROOT)$(INSTALL_DIR)" && tar xpvf
- )