mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
more gitcompile cleanups
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
880926b3cd
commit
f0bb8866ce
8 changed files with 32 additions and 14 deletions
4
Makefile
4
Makefile
|
|
@ -5,7 +5,7 @@ SUBDIRS = ac3dec as10k1 envy24control hdsploader hdspconf hdspmixer \
|
|||
usx2yloader vxloader echomixer ld10k1 qlo10k1
|
||||
|
||||
all:
|
||||
@for i in $(SUBDIRS); do cd $(TOP)/$$i; ./gitcompile $(GITCOMPILE_ARGS); cd ..; make -C $$i; done
|
||||
@for i in $(SUBDIRS); do cd $(TOP)/$$i; echo $(TOP)/$$i; ./gitcompile $(GITCOMPILE_ARGS) || exit 1; cd ..; make -C $$i || exit 1; done
|
||||
|
||||
install:
|
||||
@for i in $(SUBDIRS); do make -C $$i DESTDIR=$(DESTDIR) install; done
|
||||
|
|
@ -13,7 +13,7 @@ install:
|
|||
alsa-dist:
|
||||
@echo $(VERSION) >> $(TOP)/version
|
||||
@mkdir -p $(TOP)/distdir
|
||||
@for i in $(SUBDIRS); do cd $(TOP)/$$i; ./gitcompile $(GITCOMPILE_ARGS); cd ..; make -C $$i alsa-dist; done
|
||||
@for i in $(SUBDIRS); do cd $(TOP)/$$i; echo $(TOP)/$$i; ./gitcompile $(GITCOMPILE_ARGS) || exit 1; cd ..; make -C $$i alsa-dist || exit 1; done
|
||||
@mv distdir alsa-tools-$(VERSION)
|
||||
@tar --create --verbose --file=- alsa-tools-$(VERSION) | bzip2 -c -9 > alsa-tools-$(VERSION).tar.bz2
|
||||
@mv alsa-tools-$(VERSION) distdir
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue