File: Makefile

package info (click to toggle)
moblin-cursor-theme 0.3-3
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 1,772 kB
  • ctags: 2
  • sloc: sh: 100; makefile: 44
file content (14 lines) | stat: -rw-r--r-- 289 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
PACKAGE := moblin-cursor-theme
VERSION := $(shell git describe --abbrev=0)

all:

dist:
	cd pngs && ./make.sh
	mkdir -p $(PACKAGE)-$(VERSION)
	mv xcursors $(PACKAGE)-$(VERSION)	
	tar cjvf $(PACKAGE)-$(VERSION).tar.bz2 $(PACKAGE)-$(VERSION)
	rm -rf $(PACKAGE)-$(VERSION)

.PHONY: all dist