forked from phocean/TopIcons-plus
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (19 loc) · 689 Bytes
/
Makefile
File metadata and controls
24 lines (19 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
INSTALL_PATH = ~/.local/share/gnome-shell/extensions
INSTALL_NAME = TopIcons@huttli
install: build
rm -rf $(INSTALL_PATH)/$(INSTALL_NAME)
mkdir -p $(INSTALL_PATH)/$(INSTALL_NAME)
cp -r --preserve=timestamps _build/* $(INSTALL_PATH)/$(INSTALL_NAME)
rm -rf _build
echo Installed in $(INSTALL_PATH)/$(INSTALL_NAME)
build: compile-schema
rm -rf _build
mkdir _build
cp -r --preserve=timestamps locale schemas convenience.js extension.js metadata.json prefs.js README.md _build
echo Build was successful
compile-schema: ./schemas/org.gnome.shell.extensions.topicons.gschema.xml
glib-compile-schemas schemas
clean:
rm -rf _build
uninstall:
rm -rf $(INSTALL_PATH)/$(INSTALL_NAME)