File: Makefile

package info (click to toggle)
gnome-shell-extension-remove-dropdown-arrows 11-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 192 kB
  • sloc: makefile: 30
file content (19 lines) | stat: -rwxr-xr-x 276 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: dist

deps:
	npm install -g jshint
    
lint:
	jshint *.js
    
dist: README.md\
	LICENSE\
	extension.js\
	metadata.json
	zip -j remove-dropdown-arrows@mpdeimos.com.zip $?
	
publish:
	.infra/smartfile/publish remove-dropdown-arrows@mpdeimos.com.zip

clean:
	 rm -f *.zip