diff options
author | Josh Blum <josh@joshknows.com> | 2010-01-08 19:11:58 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-01-08 19:11:58 -0800 |
commit | 4e94574aeaa46c671bba0a6fc83cb967d228c880 (patch) | |
tree | dbc3ef97a3170875d07d9e0ab510d635c036edd6 /Makefile.common | |
parent | a478ffe79757f82ce16b6694d860a53dac60849c (diff) | |
download | uhd-4e94574aeaa46c671bba0a6fc83cb967d228c880.tar.gz uhd-4e94574aeaa46c671bba0a6fc83cb967d228c880.tar.bz2 uhd-4e94574aeaa46c671bba0a6fc83cb967d228c880.zip |
Created subcomponent for usrp dboards.
Only populated the interface though.
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common index 9b81eb842..b7e672baf 100644 --- a/Makefile.common +++ b/Makefile.common @@ -2,8 +2,20 @@ # Copyright 2010 Ettus Research LLC # +######################################################################## +## Makefile variables for the top level component: the uhd +######################################################################## USRP_UHD_INCLUDES = \ -I$(top_srcdir)/usrp_uhd/include USRP_UHD_LA = \ $(top_srcdir)/usrp_uhd/lib/libusrp_uhd.la + +######################################################################## +## Makefile variables for the usrp dboard component +######################################################################## +USRP_DBOARD_INCLUDES = \ + -I$(top_srcdir)/usrp_dboard/include + +USRP_DBOARD_LA = \ + $(top_srcdir)/usrp_dboard/lib/libusrp_dboard.la |