diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-09 17:33:50 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-09 17:33:50 -0700 |
commit | 52a1e1c10b3298ad689e88fd9d8ccdd94d08f56b (patch) | |
tree | ea6c703c7829d4b00cfd9e6c9fbcb2e884eda564 | |
parent | c174bf9acb2b2d142456f1186bd3e41e40d8a6d1 (diff) | |
download | uhd-52a1e1c10b3298ad689e88fd9d8ccdd94d08f56b.tar.gz uhd-52a1e1c10b3298ad689e88fd9d8ccdd94d08f56b.tar.bz2 uhd-52a1e1c10b3298ad689e88fd9d8ccdd94d08f56b.zip |
makefile dependency fix for second expansion
-rw-r--r-- | usrp2/top/Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/top/Makefile.common b/usrp2/top/Makefile.common index d0435fa1e..4da64ac28 100644 --- a/usrp2/top/Makefile.common +++ b/usrp2/top/Makefile.common @@ -47,7 +47,7 @@ $(ISE_FILE): $$(SOURCES) $$(MAKEFILE_LIST) @echo $@ $(ISE_HELPER) "" -$(BIN_FILE): $(ISE_FILE) +$(BIN_FILE): $(ISE_FILE) $$(SOURCES) $$(MAKEFILE_LIST) @echo $@ $(ISE_HELPER) "Generate Programming File" touch $@ |