1.0.13.52: Fix typo in bit-vector.impure-cload.lisp
[sbcl/simd.git] / contrib / asdf-module.mk
blobdc6a07a1c021a745a13dcb8cf42c2d23483a80a1
1 CC=gcc
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)
12 ifeq (SunOS,$(UNAME))
13 EXTRA_CFLAGS=-D_XOPEN_SOURCE=500 -D__EXTENSIONS__
14 endif
15 ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME)))
16 EXTRA_CFLAGS=-mno-cygwin
17 endif
19 export CC SBCL EXTRA_CFLAGS EXTRA_LDFLAGS
21 all: $(EXTRA_ALL_TARGETS)
22 $(MAKE) -C ../asdf
23 $(SBCL) --eval '(defvar *system* "$(SYSTEM)")' --load ../asdf-stub.lisp --eval '(quit)'
25 test: all
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 - )