1.0.23.36: typecheck :ALLOCATION :CLASS slot initforms in safe code
[sbcl/tcr.git] / contrib / asdf-module.mk
blob6a9aba13fa5f852a21b6e655e708022193d24670
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")'
30 # KLUDGE: There seems to be no portable way to tell tar to not to
31 # preserve owner, so chown after installing for the current user.
32 install: $(EXTRA_INSTALL_TARGETS)
33 tar cf - . | ( cd "$(BUILD_ROOT)$(INSTALL_DIR)" && tar xpvf - )
34 find "$(BUILD_ROOT)$(INSTALL_DIR)" -type f -exec chown `id -u`:`id -g` {} \;