diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2004-12-29 20:23:33 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2004-12-29 20:23:33 +0000 |
| commit | 599db7b4775759233716070d395bf3e072e808a4 (patch) | |
| tree | 4e242ae475160582c5222df42a952b73a8a71e8a /java | |
| parent | 300b281a6df66390db742859a8f6b63db181835b (diff) | |
| download | lasso-599db7b4775759233716070d395bf3e072e808a4.tar.gz lasso-599db7b4775759233716070d395bf3e072e808a4.tar.xz lasso-599db7b4775759233716070d395bf3e072e808a4.zip | |
don't use $< since it fails with BSD make.
Diffstat (limited to 'java')
| -rw-r--r-- | java/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/Makefile.am b/java/Makefile.am index ba37bba0..657ff99b 100644 --- a/java/Makefile.am +++ b/java/Makefile.am @@ -49,7 +49,8 @@ MAINTAINERCLEANFILES = $(SWIG_OUTPUTS) lasso_wrap.c lasso.java: $(top_srcdir)/swig/Lasso.i $(top_srcdir)/swig/Lasso-wsf.i - $(SWIG) -v -java -module lasso -package com.entrouvert.lasso -o lasso_wrap.c $< + $(SWIG) -v -java -module lasso -package com.entrouvert.lasso -o lasso_wrap.c \ + $(top_srcdir)/swig/Lasso.i # FIXME There must be a better way to do this with SWIG $(JAVA_PATH)lasso.java: lasso.java |
