mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
Chore: avoid rebuilding after make
This commit is contained in:
15
Makefile
15
Makefile
@@ -59,10 +59,17 @@ clean:
|
|||||||
distclean:
|
distclean:
|
||||||
rm -rf .cargo vendor vendor.tar.xz
|
rm -rf .cargo vendor vendor.tar.xz
|
||||||
|
|
||||||
target/$(TARGET)/$(BIN_D): build
|
target/$(TARGET)/$(BIN_D): $(SRC)
|
||||||
target/$(TARGET)/$(BIN_C): build
|
$(MAKE) build
|
||||||
target/$(TARGET)/$(BIN_U): build
|
|
||||||
target/$(TARGET)/$(BIN_ROG): build
|
target/$(TARGET)/$(BIN_C): $(SRC)
|
||||||
|
$(MAKE) build
|
||||||
|
|
||||||
|
target/$(TARGET)/$(BIN_U): $(SRC)
|
||||||
|
$(MAKE) build
|
||||||
|
|
||||||
|
target/$(TARGET)/$(BIN_ROG): $(SRC)
|
||||||
|
$(MAKE) build
|
||||||
|
|
||||||
install-asusd: target/$(TARGET)/$(BIN_D)
|
install-asusd: target/$(TARGET)/$(BIN_D)
|
||||||
$(INSTALL_PROGRAM) "./target/$(TARGET)/$(BIN_D)" "$(DESTDIR)$(bindir)/$(BIN_D)"
|
$(INSTALL_PROGRAM) "./target/$(TARGET)/$(BIN_D)" "$(DESTDIR)$(bindir)/$(BIN_D)"
|
||||||
|
|||||||
Reference in New Issue
Block a user