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

Anand Shukla ashukla at cs.uiuc.edu
Tue Sep 17 23:30:01 PDT 2002


Changes in directory llvm:

Makefile.common updated: 1.52 -> 1.53

---
Log message:

corrected small bug, to handle when DIRS is not defined.


---
Diffs of the changes:

Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.52 llvm/Makefile.common:1.53
--- llvm/Makefile.common:1.52	Tue Sep 17 22:22:27 2002
+++ llvm/Makefile.common	Tue Sep 17 23:29:30 2002
@@ -182,10 +182,12 @@
 # Handle the DIRS and PARALLEL_DIRS options
 #---------------------------------------------------------
 
+ifdef DIRS
 all install clean ::
 	$(VERB) for dir in ${DIRS}; do \
 		(cd $$dir; $(MAKE) $@) || exit 1; \
 	done
+endif
 
 # Handle PARALLEL_DIRS
 ifdef PARALLEL_DIRS





More information about the llvm-commits mailing list