[llvm-commits] [hlvm] r38231 - /hlvm/trunk/Makefile
Reid Spencer
reid at x10sys.com
Sat Jul 7 17:01:25 PDT 2007
Author: reid
Date: Sat Jul 7 19:01:24 2007
New Revision: 38231
URL: http://llvm.org/viewvc/llvm-project?rev=38231&view=rev
Log:
Add a quick hack to make a distribution. We'll do this with scons properly on
the next release.
Modified:
hlvm/trunk/Makefile
Modified: hlvm/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/Makefile?rev=38231&r1=38230&r2=38231&view=diff
==============================================================================
--- hlvm/trunk/Makefile (original)
+++ hlvm/trunk/Makefile Sat Jul 7 19:01:24 2007
@@ -59,3 +59,21 @@
tools:
cd tools ; scons $(SCONSOPTS) -u mode=$(MYMODE)
+
+dist: exclusions
+ tar jcf hlvm-0.1-tar.bz2 -C .. --exclude-from exclusions hlvm
+
+exclusions: Makefile
+ echo exclusions > exclusions
+ echo .svn >> exclusions
+ echo '.*_options' >> exclusions
+ echo '*.pyc' >> exclusions
+ echo Debug >> exclusions
+ echo Optimized >> exclusions
+ echo Release >> exclusions
+ echo Profile >> exclusions
+ echo default >> exclusions
+ echo Library >> exclusions
+ echo hlvm-0.1-tar.bz2 >> exclusions
+ echo '*.swp' >> exclusions
+ echo 'config.log' >> exclusions
More information about the llvm-commits
mailing list