summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlek Du <alek.du@intel.com>2008-05-21 17:31:08 +0800
committerPatrick Tjin <pattjin@google.com>2014-07-21 20:22:37 -0700
commit4aa054e574e8246c796f60b5ca1d92cbfb368e43 (patch)
tree62703722025abc3c1e08ebf3c2db09d6d2e23e45 /Makefile
parent6aaa90bb5e6275474fb74bfc6c9d9a4649bb2655 (diff)
downloadbootstub-4aa054e574e8246c796f60b5ca1d92cbfb368e43.tar.gz
* use tar.bz2 as source tar ball and add RPM spec file
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 58625ce..05088be 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ head.o:head.S
clean:
rm -rf *.o *.bin *.elf
-targz:bootstub.c head.S VERSION
- git-archive --prefix=bootstub-`head -n 1 VERSION | awk '{print $$1}'`/ --format=tar HEAD | gzip -c > bootstub-`head -n 1 VERSION | awk '{print $$1}'`.tar.gz
+source:bootstub.c head.S VERSION
+ git-archive --prefix=bootstub-`head -n 1 VERSION | awk '{print $$1}'`/ --format=tar HEAD | bzip2 -c > bootstub-`head -n 1 VERSION | awk '{print $$1}'`.tar.bz2
-.PHONY: all clean targz
+.PHONY: all clean source