X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FGNUmakefile;h=28e6121933d4f8c83cba0b35f90c1756d859b04c;hb=b870615b146940f661e5d0e9069ca4e16e9f483d;hp=bf32c7a324f7a6be0a37aa165f149c83a3e88dfb;hpb=dc5e3163fe667e2629c7769aa8cf2e501eeeefa6;p=sbcl.git diff --git a/src/runtime/GNUmakefile b/src/runtime/GNUmakefile index bf32c7a..28e6121 100644 --- a/src/runtime/GNUmakefile +++ b/src/runtime/GNUmakefile @@ -36,7 +36,7 @@ include Config C_SRCS =alloc.c backtrace.c breakpoint.c coreparse.c \ - dynbind.c globals.c interr.c interrupt.c \ + dynbind.c gc-common.c globals.c interr.c interrupt.c \ monitor.c parse.c print.c purify.c \ regnames.c run-program.c runtime.c save.c search.c \ time.c util.c validate.c vars.c wrap.c @@ -57,11 +57,17 @@ sbcl: ${OBJS} clean: -rm -f depend *.o sbcl sbcl.nm core *.tmp +TAGS: $(SRCS) + etags $(SRCS) + +sbcl.h: genesis/*.h + echo '#include "genesis/config.h"' >sbcl.h + echo '#include "genesis/constants.h"' >>sbcl.h depend: ${C_SRCS} sbcl.h $(CC) ${DEPEND_FLAGS} ${CFLAGS} ${CPPFLAGS} ${C_SRCS} > depend.tmp mv -f depend.tmp depend -# By including this file, we cause GNU to automatically make depend if -# it can't find it or it is out of date +# By including this file, we cause GNU make to automatically "make depend" +# if it can't find it or it is out of date. include depend