mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
Master Makefile: added cleanold target
This commit is contained in:
parent
8095776234
commit
ced0fad7ed
14
Makefile
14
Makefile
@ -16,28 +16,28 @@ non-free-pkgs := $(shell ./aport.lua deplist $(rootdir) non-free)
|
||||
|
||||
unstable-pkgs := $(shell ./aport.lua deplist $(rootdir) unstable)
|
||||
|
||||
main:
|
||||
main:
|
||||
for p in $(main-pkgs) ; \
|
||||
do \
|
||||
cd $(rootdir)/$@/$$p; \
|
||||
abuild -r; \
|
||||
done
|
||||
|
||||
testing:
|
||||
testing:
|
||||
for p in $(testing-pkgs) ; \
|
||||
do \
|
||||
cd $(rootdir)/$@/$$p; \
|
||||
abuild -r; \
|
||||
done
|
||||
|
||||
non-free:
|
||||
non-free:
|
||||
for p in $(non-free-pkgs) ; \
|
||||
do \
|
||||
cd $(rootdir)/$@/$$p; \
|
||||
abuild -r; \
|
||||
done
|
||||
|
||||
unstable:
|
||||
unstable:
|
||||
for p in $(unstable-pkgs) ; \
|
||||
do \
|
||||
cd $(rootdir)/$@/$$p; \
|
||||
@ -51,6 +51,12 @@ clean:
|
||||
abuild cleanpkg; \
|
||||
done
|
||||
|
||||
cleanold:
|
||||
for p in $(all-pkgs) ; do \
|
||||
cd $(rootdir)/$$p; \
|
||||
abuild cleanoldpkg; \
|
||||
done
|
||||
|
||||
fetch:
|
||||
for p in $(all-pkgs) ; do \
|
||||
cd $(rootdir)/$$p; \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user