Skip to content

Commit

Permalink
Make debug build default in Makefile again
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacalz committed Jan 21, 2025
1 parent 3556c73 commit d0a5e49
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ NAME = rymdport
# If PREFIX isn't provided, default to /usr.
PREFIX ?= /usr

release:
go build -tags no_emoji,no_metadata -trimpath -ldflags="-s -w" -buildvcs=false -o $(NAME)
.PHONY: release

debug:
go build -tags no_emoji,no_metadata -trimpath -o $(NAME)
.PHONY: debug

release:
go build -tags no_emoji,no_metadata -trimpath -ldflags="-s -w" -buildvcs=false -o $(NAME)
.PHONY: release

install:
install -Dm00755 $(NAME) $(DESTDIR)$(PREFIX)/bin/$(NAME)
install -Dm00644 internal/assets/icons/icon-512.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/512x512/apps/$(APPID).png
Expand Down

0 comments on commit d0a5e49

Please sign in to comment.