summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-12-02 21:42:34 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-12-02 21:42:34 -0800
commit24d5bf1de3e64c3ddb24199cbc6e9c194a03887e (patch)
tree6ff178bc697348fd6e1354897d5c8530fed563d3 /Makefile
parent8f7fb0a019ebf8e40302bff892baf39955c594b1 (diff)
downloadtxr-24d5bf1de3e64c3ddb24199cbc6e9c194a03887e.tar.gz
txr-24d5bf1de3e64c3ddb24199cbc6e9c194a03887e.tar.bz2
txr-24d5bf1de3e64c3ddb24199cbc6e9c194a03887e.zip
Fix annoyances with dependency generation, such as picking up local
files that are not in the project.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 58cf57a3..e756e35c 100644
--- a/Makefile
+++ b/Makefile
@@ -72,7 +72,7 @@ distclean: clean
.PHONY: depend
depend:
- $(PROG) $(top_srcdir)/depend.txr > $(top_srcdir)/dep.mk
+ $(PROG) $(top_srcdir)/depend.txr $(OBJS) > $(top_srcdir)/dep.mk
TESTS := $(patsubst $(top_srcdir)/%.txr,./%.ok,\
$(shell find $(top_srcdir)/tests -name '*.txr' | sort))