Skip to content

Commit

Permalink
add readme and changelog to dist package
Browse files Browse the repository at this point in the history
  • Loading branch information
gasman committed Aug 11, 2017
1 parent 21faca1 commit 6457a7c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ DIST_FILES=\
dist/cowbell/openmpt.min.js \
dist/doc/api.md \
dist/doc/usage.md \
dist/doc/LICENSE
dist/doc/LICENSE \
dist/doc/README.md \
dist/doc/CHANGELOG.txt

.PHONY: all
all: $(DIST_FILES)
Expand Down Expand Up @@ -76,6 +78,14 @@ dist/doc/LICENSE: LICENSE
mkdir -p dist/doc/
cp LICENSE dist/doc/LICENSE

dist/doc/README.md: README.md
mkdir -p dist/doc/
cp README.md dist/doc/README.md

dist/doc/CHANGELOG.txt: CHANGELOG.txt
mkdir -p dist/doc/
cp CHANGELOG.txt dist/doc/CHANGELOG.txt

build/z80.js: cowbell/zx_spectrum/z80.coffee
mkdir -p build
coffee -c -o build/ cowbell/zx_spectrum/z80.coffee
Expand Down

0 comments on commit 6457a7c

Please sign in to comment.