X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FGNUmakefile;h=cfaac204c351f462e9c11eafc33cf5b58101b007;hb=743831e679b673a5680a0afd8402911516bf50e2;hp=af7516070dfe25a47c51ac521c318cc8def256dc;hpb=4efb45cc0b0b9c3109d7cfd72f3f35de2ca4727e;p=sbcl.git diff --git a/src/runtime/GNUmakefile b/src/runtime/GNUmakefile index af75160..cfaac20 100644 --- a/src/runtime/GNUmakefile +++ b/src/runtime/GNUmakefile @@ -23,7 +23,7 @@ NM = nm -gp DEPEND_FLAGS = -MM GREP = grep -CFLAGS = -g -Wall -O3 +CFLAGS = -g -Wall -Wsign-compare -O3 ASFLAGS = $(CFLAGS) CPPFLAGS = -I. @@ -39,8 +39,8 @@ 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 \ + 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 pthread-lutex.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 +71,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; \