Skip to content

Commit a90439c

Browse files
committed
Separate build and install targets
1 parent 7ee749d commit a90439c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
install:
1+
build:
22
cargo build --release
3+
install: build
34
sudo cp target/release/onefetch /usr/local/bin
45
uninstall:
56
sudo rm -f /usr/local/bin/onefetch
7+
clean:
8+
cargo clean

0 commit comments

Comments
 (0)