EPICS-synApps / support

APS BCDA synApps module: support
http://epics-synapps.github.io/support/
Other
3 stars 12 forks source link

simplify the selection/removal of modules from Makefile #3

Closed prjemian closed 8 years ago

prjemian commented 8 years ago

On some platforms, not all synApps modules are to be built. Make it easier to remove a module from the build by commenting its MODULE_LIST line in the Makefile

This will change lines such as:

MODULE_LIST =  SNCSEQ ALLEN_BRADLEY

into

MODULE_LIST  =  
MODULE_LIST +=  SNCSEQ 
MODULE_LIST +=  ALLEN_BRADLEY

then, it is easier to remove (for example) the Allen-Bradley support by placing a comment on just one line, such as:

#MODULE_LIST +=  ALLEN_BRADLEY