-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# adjust the following line to point to your git checkout of bedrock | ||
BEDROCK_BASE ?= $(HOME)/src/Firmware/bedrock | ||
include $(BEDROCK_BASE)/dir_list.mk | ||
|
||
# Possibly common setup / configuration | ||
include $(BUILD_DIR)/top_rules.mk | ||
|
||
MERGED_FILE = badgerMerged.v | ||
|
||
all: $(MERGED_FILE) | ||
|
||
# Packet Badger synthesizable code | ||
RTEFI_CLIENT_LIST = hello.v | ||
include $(BADGER_DIR)/rules.mk | ||
|
||
vpath %.v $(DSP_DIR) $(SERIAL_IO_DIR) | ||
|
||
$(MERGED_FILE): $(RTEFI_V) | ||
iverilog -E -o $@ $^ | ||
|
||
clean: | ||
rm -f $(RTEFI_CLEAN) $(MERGED_FILE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This Makefile should be copied to an application firmware source directory. | ||
It builds the 'rtefi_blob' required by the bantamweight firmware. |