diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-04 12:29:52 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-04 12:29:52 -0800 |
commit | d96a1fa869072053d943badb6e3904a7d7a2d4de (patch) | |
tree | 3cfa8dee4f676612519da592feff3191bbbd771f /dep.mk | |
parent | bdccbad1c7da40d80f976858582574eb3c76dd40 (diff) | |
download | txr-d96a1fa869072053d943badb6e3904a7d7a2d4de.tar.gz txr-d96a1fa869072053d943badb6e3904a7d7a2d4de.tar.bz2 txr-d96a1fa869072053d943badb6e3904a7d7a2d4de.zip |
Got build to work in separate build directory.
Diffstat (limited to 'dep.mk')
-rw-r--r-- | dep.mk | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -1,9 +1,10 @@ -lib.o: lib.h gc.h unwind.h stream.h -lex.yy.o: y.tab.h lib.h gc.h stream.h parser.h -regex.o: lib.h unwind.h regex.h -y.tab.o: lib.h regex.h parser.h -unwind.o: lib.h gc.h stream.h txr.h unwind.h -txr.o: lib.h stream.h gc.h unwind.h parser.h match.h txr.h -match.o: lib.h gc.h unwind.h regex.h stream.h parser.h txr.h match.h -stream.o: lib.h gc.h unwind.h stream.h -gc.o: lib.h stream.h txr.h gc.h +parser.tab.o: $(top_srcdir)/lib.h $(top_srcdir)/regex.h $(top_srcdir)/parser.h +lib.o: $(top_srcdir)/lib.h $(top_srcdir)/gc.h $(top_srcdir)/unwind.h $(top_srcdir)/stream.h +lex.yy.o: y.tab.h $(top_srcdir)/lib.h $(top_srcdir)/gc.h $(top_srcdir)/stream.h $(top_srcdir)/parser.h +regex.o: $(top_srcdir)/lib.h $(top_srcdir)/unwind.h $(top_srcdir)/regex.h +y.tab.o: $(top_srcdir)/lib.h $(top_srcdir)/regex.h $(top_srcdir)/parser.h +unwind.o: $(top_srcdir)/lib.h $(top_srcdir)/gc.h $(top_srcdir)/stream.h $(top_srcdir)/txr.h $(top_srcdir)/unwind.h +txr.o: $(top_srcdir)/lib.h $(top_srcdir)/stream.h $(top_srcdir)/gc.h $(top_srcdir)/unwind.h $(top_srcdir)/parser.h $(top_srcdir)/match.h $(top_srcdir)/txr.h +match.o: $(top_srcdir)/lib.h $(top_srcdir)/gc.h $(top_srcdir)/unwind.h $(top_srcdir)/regex.h $(top_srcdir)/stream.h $(top_srcdir)/parser.h $(top_srcdir)/txr.h $(top_srcdir)/match.h +stream.o: $(top_srcdir)/lib.h $(top_srcdir)/gc.h $(top_srcdir)/unwind.h $(top_srcdir)/stream.h +gc.o: $(top_srcdir)/lib.h $(top_srcdir)/stream.h $(top_srcdir)/txr.h $(top_srcdir)/gc.h |