forked from pop-os/cosmic-osd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
50 lines (39 loc) · 945 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
prefix ?= /usr/local
polkit-agent-helper-1 ?= /usr/libexec/polkit-agent-helper-1
bindir = $(prefix)/bin
libdir = $(prefix)/lib
includedir = $(prefix)/include
datarootdir = $(prefix)/share
datadir = $(datarootdir)
TARGET = debug
DEBUG ?= 0
ifeq ($(DEBUG),0)
TARGET = release
ARGS += --release
endif
VENDOR ?= 0
ifneq ($(VENDOR),0)
ARGS += --frozen
endif
BIN = cosmic-osd
all: $(BIN)
clean:
rm -rf target
distclean: clean
rm -rf .cargo vendor vendor.tar
$(BIN): Cargo.toml Cargo.lock src/main.rs vendor-check
POLKIT_AGENT_HELPER_1=$(polkit-agent-helper-1) cargo build $(ARGS) --bin ${BIN}
install:
install -Dm0755 target/$(TARGET)/$(BIN) $(DESTDIR)$(bindir)/$(BIN)
## Cargo Vendoring
vendor:
rm .cargo -rf
mkdir -p .cargo
cargo vendor | head -n -1 > .cargo/config
echo 'directory = "vendor"' >> .cargo/config
tar cf vendor.tar vendor
rm -rf vendor
vendor-check:
ifeq ($(VENDOR),1)
rm vendor -rf && tar xf vendor.tar
endif