Sha256: ab42fe67450875f4671337d43448a3341b5238ae236cc3623c40443de9d86b2e

Contents?: true

Size: 256 Bytes

Versions: 2

Compression:

Stored size: 256 Bytes

Contents

.PHONY: clean

SWIG = swig
DEPS_DIR = ../../../deps/

include ../../../deps/env.mk

SWIGFLAGS = -ruby -c++ $(OGRE_INC) -I../src
RUBY = ruby

TARGET = ogre_wrap.cpp

all: $(TARGET)

$(TARGET): ogre.i
	$(SWIG) $(SWIGFLAGS) -o $@ $<

clean:
	@rm -f $(TARGET)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby-ogre-0.0.2-x86-linux bindings/ogre/interface/Makefile
ruby-ogre-0.0.1-x86-linux bindings/ogre/interface/Makefile