blob: 1902137693d87e97026d6c762afe46c60b8f6fab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.PHONY: all
all:
@echo "Make what specifically?"
@echo "The most common target is 'iso'"
.PHONY: iso
iso:
@echo "Starting VyOS ISO image build"
@scripts/check-build-env
@scripts/check-config
@scripts/live-build-config
cp -r data/includes.chroot/* build/config/includes.chroot/
@echo "The rest is not yet implemented ;)"
@echo "ISO build successful"
|