diff --git a/src/.gitignore b/src/.gitignore index 0acc02d..99ccd02 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -2,3 +2,5 @@ *.so *.dll target +Makevars +Makevars.win diff --git a/src/Makevars b/src/Makevars deleted file mode 100644 index 697a2ae..0000000 --- a/src/Makevars +++ /dev/null @@ -1,19 +0,0 @@ -LIBDIR = ./rust/target/release -PKG_LIBS = -L$(LIBDIR) -lymd -STATLIB = $(LIBDIR)/libymd.a - -all: C_clean - -$(SHLIB): $(STATLIB) - -$(STATLIB): - . "/Users/shrektan/.cargo/env" && cargo build --lib --release --manifest-path=./rust/Cargo.toml - - -C_clean: - rm -Rf $(SHLIB) $(OBJECTS) $(STATLIB) - -clean: - rm -Rf $(SHLIB) $(OBJECTS) $(STATLIB) rust/target - -.PHONY: all C_clean clean