[llvm-commits] CVS: llvm/Makefile.rules

Chris Lattner lattner at cs.uiuc.edu
Mon Dec 1 01:29:01 PST 2003


Changes in directory llvm:

Makefile.rules updated: 1.162 -> 1.163

---
Log message:

Make stripped-bytecode a recursive target


---
Diffs of the changes:  (+4 -3)

Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.162 llvm/Makefile.rules:1.163
--- llvm/Makefile.rules:1.162	Sat Nov 29 03:50:15 2003
+++ llvm/Makefile.rules	Mon Dec  1 01:28:25 2003
@@ -393,7 +393,7 @@
 #---------------------------------------------------------
 
 ifdef DIRS
-all install clean test bytecode ::
+all install clean test bytecode stripped-bytecode::
 	$(VERB) for dir in ${DIRS}; do \
 		if [ ! -f $$dir/Makefile ]; \
 		then \
@@ -411,8 +411,9 @@
 clean    :: $(addsuffix /.makeclean   , $(PARALLEL_DIRS))
 test     :: $(addsuffix /.maketest    , $(PARALLEL_DIRS))
 bytecode :: $(addsuffix /.makebytecode, $(PARALLEL_DIRS))
+stripped-bytecode :: $(addsuffix /.makestripped-bytecode, $(PARALLEL_DIRS))
 
-%/.makeall %/.makeinstall %/.makeclean %/.maketest %/.makebytecode:
+%/.makeall %/.makeinstall %/.makeclean %/.maketest %/.makebytecode %/.makestripped-bytecode:
 	$(VERB) if [ ! -f $(@D)/Makefile ]; \
 	then \
 		$(MKDIR) $(@D); \
@@ -423,7 +424,7 @@
 
 # Handle directories that may or may not exist
 ifdef OPTIONAL_DIRS
-all install clean test bytecode ::
+all install clean test bytecode stripped-bytecode::
 	$(VERB) for dir in ${OPTIONAL_DIRS}; do \
 		if [ -d $(SourceDir)/$$dir ]; \
 		then\





More information about the llvm-commits mailing list