Skip to content

Commit

Permalink
Fix makefile targets
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Jun 17, 2024
1 parent 1ad211e commit b4eea66
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
build-x86_64:
cross build --bin eleel --target x86_64-unknown-linux-gnu --profile release --locked

build-x86_64:
cross build --bin eleel --target x86_64-unknown-linux-gnu --profile release --locked
build-aarch64:
cross build --bin eleel --target aarch64-unknown-linux-gnu --profile release --locked

.PHONY: build-x86_64 build-aarch64

0 comments on commit b4eea66

Please sign in to comment.