File: Makefile

package info (click to toggle)
rmlint 2.10.2-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,180 kB
  • sloc: ansic: 15,671; python: 9,312; sh: 474; xml: 111; makefile: 72
file content (12 lines) | stat: -rw-r--r-- 377 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
resources:
	@glib-compile-resources shredder/resources/shredder.gresource.xml --sourcedir shredder/resources

schema:
	@mkdir -p ~/.glib-schemas
	@cp shredder/resources/org.gnome.Shredder.gschema.xml ~/.glib-schemas
	@glib-compile-schemas ~/.glib-schemas

run: resources schema
	@GSETTINGS_SCHEMA_DIR=~/.glib-schemas/ python3 -c "import shredder; shredder.run_gui()"

all: run