diff options
author | Matt Ettus <matt@ettus.com> | 2010-06-18 12:38:05 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-06-18 12:38:05 -0700 |
commit | 3f2ffe6c55e3def5689a1a3b043a3421680d85d5 (patch) | |
tree | 9aa61d1dad0c385210583c85944f0fff1eb3eaf8 | |
parent | 058b7e87a41f7afa57050ae908f1db31dc5717cc (diff) | |
parent | 3d59d91fdca2fa5e177156ea2b54e28bc7e02cef (diff) | |
download | uhd-3f2ffe6c55e3def5689a1a3b043a3421680d85d5.tar.gz uhd-3f2ffe6c55e3def5689a1a3b043a3421680d85d5.tar.bz2 uhd-3f2ffe6c55e3def5689a1a3b043a3421680d85d5.zip |
Merge branch 'master' into u2p
* master:
proper dependency tracking for the makefile
-rw-r--r-- | usrp2/top/Makefile.common | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usrp2/top/Makefile.common b/usrp2/top/Makefile.common index d1c89fdfb..d0435fa1e 100644 --- a/usrp2/top/Makefile.common +++ b/usrp2/top/Makefile.common @@ -42,7 +42,8 @@ clean: ################################################## # Dependency Targets ################################################## -$(ISE_FILE): $(SOURCES) +.SECONDEXPANSION: +$(ISE_FILE): $$(SOURCES) $$(MAKEFILE_LIST) @echo $@ $(ISE_HELPER) "" |