PACKAGE=glibc
#PACKAGE=glibc-locale-base

all:

download:
	# Download all packages. 15-SP3 covers SP4 and SP5 for glibc.
	setup_package.sh --platform=15-SP3 --package=$(PACKAGE) --no-src-download --no-debuginfo-download --no-ipa-clones-download
	# Delete anything we don't need.
	find 15-SP3 -type f  ! -name "*.json"  -delete
	# Move upwards into the tree to make things easier.
	mv --backup=numbered -f 15-SP3/glibc/* .
	# In this case we are safe to remove the backups because they are the
	# same library.
	rm -rf *~1~
	rm -rf 15-SP3

clean:

clean_packages:
	rm -f *.rpm
	rm -f -R -- */

check:

install:
