Skip to content

Commit

Permalink
fix(Makefile): build binaries after files are ready
Browse files Browse the repository at this point in the history
in case of given a parallel build flag

Closes #29, #30
  • Loading branch information
lotem committed Jul 2, 2022
1 parent 9588b5a commit 3d06432
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Makefile
Expand Up @@ -23,11 +23,14 @@ preset extra all: clean
minimal: clean
bash $(SRCDIR)/scripts/minimal-build.sh $(OUTPUT)

preset-bin: preset build
preset-bin: preset
$(MAKE) build

all-bin: all build
all-bin: all
$(MAKE) build

minimal-bin: minimal build
minimal-bin: minimal
$(MAKE) build

build:
rime_deployer --build $(OUTPUT)
Expand Down

0 comments on commit 3d06432

Please sign in to comment.