Skip to content

Commit

Permalink
Merge pull request kjur#216 from enumatech/fix_npmmake
Browse files Browse the repository at this point in the history
Fixed the npm_util Makefile for better portability
  • Loading branch information
kjur authored Apr 4, 2020
2 parents d2f229d + 8899e5c commit 111587b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions npm_util/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.PHONY: all aaa

all:
echo aaa

aaa:
cat \
lib/header.js \
../min/nodeutil-1.0.min.js \
lib/footer.js \
> lib/jsrsasign-util.js
@echo aaa

aaa: lib/jsrsasign-util.js

lib/jsrsasign-util.js: lib/header.js ../min/nodeutil-1.0.min.js lib/footer.js
cat $^ > $@

0 comments on commit 111587b

Please sign in to comment.