diff options
-rw-r--r-- | otherlibs/labltk/tkanim/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/otherlibs/labltk/tkanim/Makefile b/otherlibs/labltk/tkanim/Makefile index 4ae136a16..be4e5ec36 100644 --- a/otherlibs/labltk/tkanim/Makefile +++ b/otherlibs/labltk/tkanim/Makefile @@ -21,8 +21,12 @@ tkanim.cmxa: $(OBJS:.cmo=.cmx) libtkanim.a: $(COBJS) $(MKLIB) -o tkanim $(COBJS) $(TK_LINK) +gifanimtest-static: all gifanimtest.cmo + $(CAMLC) -custom -o $@ -I ../lib -I ../support -I ../../unix -dllpath ../support -dllpath . unix.cma -ccopt -L. $(LIBNAME).cma tkanim.cma gifanimtest.cmo + +# dynamic loading gifanimtest: all gifanimtest.cmo - $(CAMLC) -o $@ -I ../lib -I ../support -dllpath ../support -dllpath . unix.cma $(LIBNAME).cma tkanim.cma gifanimtest.cmo + $(CAMLC) -o $@ -I ../lib -I ../support -I ../../unix -dllpath ../support -dllpath . unix.cma $(LIBNAME).cma tkanim.cma gifanimtest.cmo animwish: $(TKANIM_LIB) tkAppInit.o $(CC) -o $@ tkAppInit.o $(TK_LINK) $(X11_LINK) \ |