Use the PROG variable instead of 'busybox' in the release target
This commit is contained in:
parent
8dc8cb133c
commit
0874a613d2
10
Makefile
10
Makefile
@ -232,20 +232,20 @@ distclean: clean
|
|||||||
|
|
||||||
release: distclean #doc
|
release: distclean #doc
|
||||||
cd ..; \
|
cd ..; \
|
||||||
rm -rf busybox-$(VERSION); \
|
rm -rf $(PROG)-$(VERSION); \
|
||||||
cp -a busybox busybox-$(VERSION); \
|
cp -a busybox $(PROG)-$(VERSION); \
|
||||||
\
|
\
|
||||||
find busybox-$(VERSION)/ -type d \
|
find $(PROG)-$(VERSION)/ -type d \
|
||||||
-name CVS \
|
-name CVS \
|
||||||
-print \
|
-print \
|
||||||
-exec rm -rf {} \; ; \
|
-exec rm -rf {} \; ; \
|
||||||
\
|
\
|
||||||
find busybox-$(VERSION)/ -type f \
|
find $(PROG)-$(VERSION)/ -type f \
|
||||||
-name .\#* \
|
-name .\#* \
|
||||||
-print \
|
-print \
|
||||||
-exec rm -f {} \; ; \
|
-exec rm -f {} \; ; \
|
||||||
\
|
\
|
||||||
tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
|
tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
ctags -R .
|
ctags -R .
|
||||||
|
Loading…
Reference in New Issue
Block a user