Makefile: generate .tgz file for dist target (rather than tar.gz)

This commit is contained in:
Nguyen Anh Quynh 2014-01-22 18:46:20 +08:00
parent 961b62f3af
commit 186d501826
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ DIST_VERSION = $(TAG)
endif
dist:
git archive --format=tar.gz --prefix=capstone-$(DIST_VERSION)/ $(TAG) > capstone-$(DIST_VERSION).tar.gz
git archive --format=tar.gz --prefix=capstone-$(DIST_VERSION)/ $(TAG) > capstone-$(DIST_VERSION).tgz
.c.o:
$(CC) $(CFLAGS) -c $< -o $@