diff options
| -rw-r--r-- | llvm/Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/llvm/Makefile b/llvm/Makefile index 837c2d72228..dabf0c03fe8 100644 --- a/llvm/Makefile +++ b/llvm/Makefile @@ -142,7 +142,19 @@ build-for-llvm-top: fi $(Verb) $(MAKE) tools-only -.PHONY: srpm rpm + + +SVN = svn +AWK = awk +SUB-SVN-DIRS = $(AWK) '/\? / {print $$2}' | xargs $(SVN) info 2>/dev/null | grep "Path: " | $(AWK) '{print $$2}' + +update: + $(SVN) update + @ $(SVN) status | $(SUB-SVN-DIRS) | xargs $(SVN) update + +happiness: update all check + +.PHONY: srpm rpm update happiness # declare all targets at this level to be serial: |

