We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ae4f76 commit c56613fCopy full SHA for c56613f
Makefile
@@ -1,18 +1,5 @@
1
NAME := WasmKit
2
3
-MODULES = $(notdir $(wildcard Sources/*))
4
-
5
-.PHONY: all
6
-all: build
7
8
-.PHONY: build
9
-build:
10
- @swift build
11
12
-.PHONY: test
13
-test:
14
- @swift test
15
16
.PHONY: docs
17
docs:
18
swift package generate-documentation --target WasmKit
@@ -52,11 +39,3 @@ wasitest:
52
39
generate:
53
40
swift ./Utilities/generate_inst_visitor.swift
54
41
swift ./Utilities/generate_inst_dispatch.swift
55
56
-GIT_STATUS = $(shell git status --porcelain)
57
-ensure_clean:
58
- @[ -z "$(GIT_STATUS)" ] \
59
- && echo Working directory is clean \
60
- || (printf "Uncommitted changes: \n $(GIT_STATUS)\n" && exit 1)
61
62
-FORCE:
0 commit comments