forked from mithro/HDMI2USB-litex-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.all
39 lines (32 loc) · 1.17 KB
/
Makefile.all
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
ifneq ($(OS),Windows_NT)
ifneq "$(HDMI2USB_ENV)" "1"
$(error "Please 'source scripts/setup-env.sh'")
endif
endif
# Turn off Python's hash randomization
export PYTHONHASHSEED=0
gateware-generate:
BOARD=atlys TARGET=base make gateware-generate
BOARD=atlys TARGET=hdmi2usb make gateware-generate
BOARD=atlys TARGET=hdmi2eth make gateware-generate
BOARD=opsis TARGET=base make gateware-generate
BOARD=opsis TARGET=hdmi2usb make gateware-generate
BOARD=pipistrello TARGET=base make gateware-generate
gateware-build:
BOARD=atlys TARGET=base make gateware-build
BOARD=atlys TARGET=hdmi2usb make gateware-build
BOARD=atlys TARGET=hdmi2eth make gateware-build
BOARD=opsis TARGET=base make gateware-build
BOARD=opsis TARGET=hdmi2usb make gateware-build
BOARD=pipistrello TARGET=base make gateware-build
firmware:
BOARD=atlys TARGET=base make firmware
BOARD=atlys TARGET=hdmi2usb make firmware
BOARD=atlys TARGET=hdmi2eth make firmware
BOARD=opsis TARGET=base make firmware
BOARD=opsis TARGET=hdmi2usb make firmware
BOARD=pipistrello TARGET=base make firmware
all: firmware gateware
true
.DEFAULT_GOAL := all
.PHONY: all load-gateware load flash gateware firmware third_party/*