]> code.delx.au - gnu-emacs/blobdiff - lisp/makefile.w32-in
(WINS_BASIC): Remove cedet.
[gnu-emacs] / lisp / makefile.w32-in
index 511bd77907aa7bc59b1baab9f3a1058cc90e18d0..42fd0061b5f47ce10f20283612cb1eab303a4ae8 100644 (file)
@@ -1,6 +1,6 @@
 #  -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
 #  Copyright (C) 2000, 2001, 2002, 2003, 2004,
-#                2005, 2006, 2007, 2008  Free Software Foundation, Inc.
+#                2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
 
 #  This file is part of GNU Emacs.
 
@@ -83,7 +83,13 @@ COMPILE_FIRST = \
 emacs = "$(EMACS)" $(EMACSOPT)
 
 # Have to define the list of subdirs manually when not using sh.
-WINS_ALMOST=\
+WINS_CEDET=\
+       cedet \
+       cedet/ede \
+       cedet/semantic \
+       cedet/srecode
+
+WINS_BASIC=\
        calc \
        calendar \
        emacs-lisp \
@@ -103,6 +109,12 @@ WINS_ALMOST=\
        textmodes \
        url
 
+WINS_ALMOST=$(WINS_BASIC) \
+       $(WINS_CEDET)
+
+WINS_SUBDIR=$(WINS_BASIC) \
+       obsolete
+
 WINS= $(WINS_ALMOST) \
        term \
        obsolete
@@ -198,12 +210,12 @@ update-subdirs-CMD: doit
        echo ;; In load-path, after this directory should come>> $(lisp)/subdirs.el
        echo ;; certain of its subdirectories.  Here we specify them.>> $(lisp)/subdirs.el
        echo (normal-top-level-add-to-load-path $(SQUOTE)(>> $(lisp)/subdirs.el
-       @for %%d in ($(WINS)) do if not (%%d)==(term) echo "%%d">> $(lisp)/subdirs.el
+       @for %%d in ($(WINS_SUBDIR)) do echo "%%d">> $(lisp)/subdirs.el
        echo ))>> $(lisp)/subdirs.el
 
 update-subdirs-SH: doit
        $(srcdir)/update-subdirs $(lisp); \
-       for file in $(WINS); do \
+       for file in $(WINS_SUBDIR); do \
           $(srcdir)/update-subdirs $$file; \
        done;