Skip to content

Commit

Permalink
Use Makefile instead of Rake
Browse files Browse the repository at this point in the history
  • Loading branch information
jojje committed Sep 11, 2021
1 parent 68ce4f5 commit 6ff358a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 34 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
OUTDIR := Release
VERSION := $(shell awk -F'"' '/define VERSION/{print $$2}' SmoothSkip.h)
SOURCES := $(shell git ls-files | grep -vE 'ignore|Makefile' | tr "\n" " ")
ARCHIVE := "dist/SmoothSkip-$(VERSION).zip"

package:
mkdir -p dist
rm -f $(ARCHIVE)
7z a $(ARCHIVE) $(SOURCES) Release/*/*.dll
34 changes: 0 additions & 34 deletions Rakefile

This file was deleted.

0 comments on commit 6ff358a

Please sign in to comment.