diff options
author | Matt Ettus <matt@ettus.com> | 2010-06-18 12:12:52 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-06-18 12:12:52 -0700 |
commit | 63627205e57b0e22b3ed930ebc106127127d0da5 (patch) | |
tree | 136fcda65ac3a3c0e99f854b88083a22c090893a | |
parent | 55e0d893e8a596e18c9eeb34e6f518e03c26dd80 (diff) | |
parent | 3d59d91fdca2fa5e177156ea2b54e28bc7e02cef (diff) | |
download | uhd-63627205e57b0e22b3ed930ebc106127127d0da5.tar.gz uhd-63627205e57b0e22b3ed930ebc106127127d0da5.tar.bz2 uhd-63627205e57b0e22b3ed930ebc106127127d0da5.zip |
Merge branch 'master' into u1e
* 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) "" |