forked from custom-computing-ic/dfe-snippets
-
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
196,650 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,38 @@ | ||
#################################################### | ||
# Makefile ------- Thomas Chau 2013 # | ||
# Tested for MaxCompiler 2013.2.2 # | ||
#################################################### | ||
# 1) For SLiC interface only | ||
# If you are using MaxCompilerRT, | ||
# use maxfilecompile instead of sliccompile | ||
# and change LFLAGS -lslic to -lmaxcompilerrt | ||
# 2) This makefile uses common settings and | ||
# compilation targets defined in the root folder | ||
# 3) Usage | ||
# ----- | ||
# Build and run simulation: make runsim | ||
# Kill failed simulation: make stopsim | ||
# Debug simulation: make debug | ||
# Build DFE: make build | ||
# Run DFE: make run | ||
# Clean binaries: make clean | ||
# Clean all generated files: make distclean | ||
|
||
|
||
# ---- Project settings ---- | ||
|
||
WHEREISROOT=../../.. | ||
|
||
|
||
# Assuming Kernel and Manager class names follow the pattern below: | ||
PRJ=PRImageFilter | ||
KERNEL= | ||
MANAGER=$(PRJ)Manager | ||
|
||
|
||
# Using known hardware settings | ||
include $(WHEREISROOT)/Makefile.Max3.hardware | ||
|
||
|
||
# Using common compillation targets and compiler settings | ||
include $(WHEREISROOT)/Makefile.common |
Oops, something went wrong.