X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fruby%2FMakefile.in;h=e9462011b285554b3ce9b843e0872b76433f81db;hp=bac1a5ae51c1d4db5927c64e501277572b7a7383;hb=e1b1d44814fded4b2c363b52bc905704feeb65be;hpb=24b2097d84ef6261b8cadfb454c85ddfbb5b0bf9 diff --git a/lib/ruby/Makefile.in b/lib/ruby/Makefile.in index bac1a5a..e946201 100644 --- a/lib/ruby/Makefile.in +++ b/lib/ruby/Makefile.in @@ -15,6 +15,12 @@ gfx.$(SLEXT): gfx.$(O) $(GFX_DEPS) Makefile clean: rm -f *.o *.$(O) *.$(SLEXT) *.so +INSTALL_LIB = echo installing $$file to $(RUBY_INSTALLDIR);$(INSTALL_PROGRAM) $$file $(RUBY_INSTALLDIR) +UNINSTALL_LIB = rm -f $(RUBY_INSTALLDIR)/$$file install: + @file=gfx.$(SLEXT); if test -f $$file;then $(INSTALL_LIB);fi + +uninstall: + @file=gfx.$(SLEXT); $(UNINSTALL_LIB) .PHONY: all