Skip to content

Commit 606aecb

Browse files
template: add make .PHONY target
1 parent 613eeff commit 606aecb

File tree

7 files changed

+14
-0
lines changed

7 files changed

+14
-0
lines changed

template/elm/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
.PHONY: build test run clean
2+
13
run:
24
@elm reactor

template/gleam-fullstack/backend/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.PHONY: build test run clean
2+
13
build:
24
@gleam build
35
run:

template/gleam-fullstack/frontend/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.PHONY: build test run clean
2+
13
run:
24
@gleam run -m lustre/dev start
35
clean:

template/gleam/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.PHONY: build test run clean
2+
13
build:
24
@gleam build
35
run:

template/go/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.PHONY: build test run clean
2+
13
test:
24
@go test -cover ./...
35
run:

template/java/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.PHONY: build test run clean
2+
13
test:
24
@mvn clean test
35
run:

template/zig/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.PHONY: build test run clean
2+
13
test:
24
@zig build test
35
run:

0 commit comments

Comments
 (0)