Sha256: 8a04b1d861d61ca4325579e68ebbd3b8acb39d96b3051f6ec3f08c5235971f32

Contents?: true

Size: 271 Bytes

Versions: 2

Compression:

Stored size: 271 Bytes

Contents

.PHONY: clean

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

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

SWIGFLAGS = -ruby -c++ $(PROC_INC) $(OGRE_INC)
RUBY = ruby

TARGET = procedural_wrap.cpp

all: $(TARGET)

$(TARGET): procedural.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/procedural/interface/Makefile
ruby-ogre-0.0.1-x86-linux bindings/procedural/interface/Makefile