Skip to content

Commit d0a5e49

Browse files
committed
Make debug build default in Makefile again
1 parent 3556c73 commit d0a5e49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ NAME = rymdport
44
# If PREFIX isn't provided, default to /usr.
55
PREFIX ?= /usr
66

7-
release:
8-
go build -tags no_emoji,no_metadata -trimpath -ldflags="-s -w" -buildvcs=false -o $(NAME)
9-
.PHONY: release
10-
117
debug:
128
go build -tags no_emoji,no_metadata -trimpath -o $(NAME)
139
.PHONY: debug
1410

11+
release:
12+
go build -tags no_emoji,no_metadata -trimpath -ldflags="-s -w" -buildvcs=false -o $(NAME)
13+
.PHONY: release
14+
1515
install:
1616
install -Dm00755 $(NAME) $(DESTDIR)$(PREFIX)/bin/$(NAME)
1717
install -Dm00644 internal/assets/icons/icon-512.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/512x512/apps/$(APPID).png

0 commit comments

Comments
 (0)