diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2009-03-27 16:44:15 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2009-03-27 16:44:15 +0000 |
| commit | e65ed1877199b1b35f9847f3aad62e98a0c2bf47 (patch) | |
| tree | 3f2c4a781bb8726466c00ce5388fc7da67662c56 | |
| parent | a46e6d8085fe68706c281392c641c6ede1a79d2c (diff) | |
Makefile: change dependencies to pass distcheck
* lasso/Makefile.am:
source dependencies must refer to $(srcdir) in order to pass
distcheck, I forgot to do it in types.c and symbols.sym target
changes.
| -rw-r--r-- | lasso/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/Makefile.am b/lasso/Makefile.am index 671cad10..d71a1b93 100644 --- a/lasso/Makefile.am +++ b/lasso/Makefile.am @@ -26,10 +26,10 @@ if WSF_ENABLED SYMBOLS_ARGS = -wsf endif -types.c: *.h */*.h */*/*.h +types.c: $(srcdir)/*.h $(srcdir)/*/*.h $(srcdir)/*/*/*.h $(PYTHON) $(srcdir)/extract_types.py $(srcdir) $(SYMBOLS_ARGS) -symbols.sym: *.h */*.h */*/*.h +symbols.sym: $(srcdir)/*.h $(srcdir)/*/*.h $(srcdir)/*/*/*.h $(PYTHON) $(srcdir)/extract_symbols.py $(srcdir) $(SYMBOLS_ARGS) > symbols.sym MAINTAINERCLEANFILES = \ |
