f2cb793945
Accidently removed the dependency installation when putting in another fix as it was not needed on my local machine, and was failing, even though later steps were fine. Change-Id: I34ed98c4add1f65fc4ce352c191e1cdff3d23d58
46 lines
888 B
Makefile
46 lines
888 B
Makefile
.PHONY: default all dependencies build finalise addssh iso clean clean_build clean_iso
|
|
default: dependencies build finalise instance-images
|
|
|
|
all: dependencies build finalise iso instance-images
|
|
|
|
dependencies:
|
|
./install-deps.sh
|
|
|
|
build:
|
|
./build-tinyipa.sh
|
|
|
|
finalise:
|
|
./finalise-tinyipa.sh
|
|
|
|
addssh:
|
|
./add-ssh-tinyipa.sh
|
|
|
|
iso:
|
|
./build-iso.sh
|
|
|
|
instance-images:
|
|
./build-instance-images.sh
|
|
|
|
clean: clean_build clean_iso
|
|
|
|
clean_build:
|
|
sudo -v
|
|
sudo rm -rf tinyipabuild
|
|
sudo rm -rf tinyipafinal
|
|
sudo rm -rf tinyipaaddssh
|
|
rm -f *tinyipa*.vmlinuz
|
|
rm -f *tinyipa*.gz
|
|
rm -f *tinyipa*.sha256
|
|
rm -f build_files/corepure64.gz
|
|
rm -f build_files/vmlinuz64
|
|
rm -f build_files/*.tcz
|
|
rm -f build_files/*.tcz.*
|
|
rm -f tiny-instance-part*.img
|
|
rm -f tiny-instance-uec*.tar.gz
|
|
|
|
clean_iso:
|
|
rm -rf newiso
|
|
rm -f build_files/syslinux-4.06.tar.gz
|
|
rm -rf build_files/syslinux-4.06
|
|
rm -f tinyipa.iso
|