Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Building with 12.2 tools without local xcommon #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions app_example_mixer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,14 @@ XCC_FLAGS = -Wall -O3 -report -g
# The USED_MODULES variable lists other module used by the application.
USED_MODULES = module_audio_mixer

run:
xsim ./bin/app_example_mixer.xe > log.txt; gnuplot plot.p;

#=============================================================================
# The following part of the Makefile includes the common build infrastructure
# for compiling XMOS applications. You should not need to edit below here.


# Use the main Makefile from module_xmos_common
XMOS_MAKE_DIR ?= ../..
include $(XMOS_MAKE_DIR)/xcommon/module_xcommon/build/Makefile.common

run:
xsim ./bin/app_example_mixer.xe > log.txt; gnuplot plot.p;
XMOS_MAKE_PATH ?= ../..
include $(XMOS_MAKE_PATH)/xcommon/module_xcommon/build/Makefile.common