killing lutexes, adding timeouts
[sbcl.git] / src / runtime / GNUmakefile
index af75160..b7b7af1 100644 (file)
@@ -23,9 +23,11 @@ NM = nm -gp
 DEPEND_FLAGS = -MM
 GREP = grep
 
-CFLAGS = -g -Wall -O3
+include ../../output/prefix.def
+
+CFLAGS = -g -Wall -Wsign-compare -O3
 ASFLAGS = $(CFLAGS)
-CPPFLAGS = -I.
+CPPFLAGS = -I. -DSBCL_PREFIX=\"$(SBCL_PREFIX)\"
 
 # Give make access to the target Lisp features.
 include genesis/Makefile.features
@@ -39,9 +41,9 @@ include genesis/Makefile.features
 include Config
 
 COMMON_SRC = alloc.c backtrace.c breakpoint.c coreparse.c \
-       dynbind.c gc-common.c globals.c interr.c interrupt.c largefile.c \
-       monitor.c os-common.c parse.c print.c purify.c \
-       pthread-futex.c pthread-lutex.c \
+       dynbind.c funcall.c gc-common.c globals.c interr.c interrupt.c \
+       largefile.c monitor.c os-common.c parse.c print.c purify.c \
+       pthread-futex.c \
        regnames.c run-program.c runtime.c save.c search.c \
        thread.c time.c util.c validate.c vars.c wrap.c 
 
@@ -71,12 +73,6 @@ TAGS tags: $(SRCS)
 
 clean:
        -rm -f *.[do] $(TARGET) sbcl.nm sbcl.h core *.tmp $(OS_CLEAN_FILES)
-       # the depend file is obsolete
-       -rm -f depend
-
-# depend target for backward compatibility
-.PHONY: depend
-depend:
 
 %.d: %.c sbcl.h
        @$(CC) $(DEPEND_FLAGS) $(CPPFLAGS) $< > $@.tmp; \