File: Makefile

package info (click to toggle)
gimp-plugin-registry 7.20140602
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 55,856 kB
  • ctags: 4,984
  • sloc: ansic: 46,100; lisp: 20,560; python: 14,721; sh: 3,306; cpp: 2,528; makefile: 1,023; xml: 546
file content (18 lines) | stat: -rw-r--r-- 565 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

SCRIPT = $(shell find src -type f -name '*.scm' | sed 's,^src/,,')
SCRIPT_SRCDIR = src

include ../common-script.mk

update-from-svn:
	rm -rf src
	svn export https://gimpfx-foundry.svn.sourceforge.net/svnroot/gimpfx-foundry/gimp-2.6/stable/ src
	rm -f version
	svn info  https://gimpfx-foundry.svn.sourceforge.net/svnroot/gimpfx-foundry/gimp-2.6/stable/ | grep '^Revision' | awk '{print "r"$$2}' > version

copyright: copyright.in
	rm -f $@
	cp copyright.in $@
	grep -Ei '^;.*copyright' src/*.scm | sed 's,:;,:,;s,^src/,,;s,^,    ,' >> $@

.PHONY: update-from-svn