Skip to content

Commit

Permalink
Merge pull request #7 from arthurpalves/fix/homebrew-installation
Browse files Browse the repository at this point in the history
Fixes brew/make installation
  • Loading branch information
arthurpalves authored Jun 3, 2020
2 parents 93ec393 + 07e537a commit 9a914c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ SOURCES = $(wildcard $(srcdir)/**/*.swift)
.DEFAULT_GOAL = all

.PHONY: all
all: badgy
all: badgy_build

badgy: $(SOURCES)
badgy_build: $(SOURCES)
@swift build \
-c release \
--disable-sandbox \
--build-path "$(BUILDDIR)"

.PHONY: install
install: badgy
install: badgy_build
@install -d "$(bindir)" "$(libdir)"
@install "$(BUILDDIR)/release/badgy" "$(bindir)"

Expand Down

0 comments on commit 9a914c2

Please sign in to comment.