Skip to content

Commit

Permalink
allow THE_APPS to be defined prior to make
Browse files Browse the repository at this point in the history
  • Loading branch information
EzraBrooks committed Jul 1, 2017
1 parent 4c97ed5 commit bec0b57
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build/cpu1/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@
#===============================================================================

# List of apps/libs to include in the build
THE_APPS := sample_lib sample_app
ifeq ($(THE_APPS), "")
THE_APPS := sample_lib sample_app
else
THE_APPS += sample_lib sample_app
endif
THE_APPS += ci_lab to_lab sch_lab
# THE_APPS += cfs_lib
# THE_APPS += cf cs ds fm hk hs lc md mm sc sch
Expand Down

0 comments on commit bec0b57

Please sign in to comment.