glutin_core_graphics 0.1.3

The *real* core_graphics crate, under a temporary name.
Documentation
VPATH=%VPATH%

RUSTC ?= rustc
RUSTFLAGS ?=
EXT_DEPS ?=

RUST_SRC=$(shell find $(VPATH)/src -type f -name '*.rs')

.PHONY: all
all:    libcore_graphics.dummy

libcore_graphics.dummy: src/lib.rs $(RUST_SRC) $(EXT_DEPS)
	$(RUSTC) $(RUSTFLAGS) $< --out-dir .
	touch $@

core_graphics-test: src/lib.rs $(RUST_SRC) $(EXT_DEPS)
	$(RUSTC) $(RUSTFLAGS) $< -o $@ --test

.PHONY: check
check: core_graphics-test
	./core_graphics-test $(TEST)

.PHONY: clean
clean:
	rm -f *.o *.a *.so *.dylib *.rlib *.dll *.dummy *-test