File: Makefile

package info (click to toggle)
gimp-plugin-registry 9.20200927
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 67,064 kB
  • sloc: ansic: 27,119; lisp: 20,560; python: 14,721; cpp: 2,528; sh: 2,220; makefile: 635; xml: 21
file content (18 lines) | stat: -rw-r--r-- 407 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

build: build-stamp

build-stamp:
	make -C src LDFLAGS="$(LDFLAGS) -lm" CFLAGS="$(CFLAGS) $(shell gimptool-2.0 --cflags)"
	touch build-stamp

install: build
	make -C src/po install LOCALEDIR=$(DESTDIR)/usr/share/locale 
	install -d -m 755 $(DESTDIR)$(PLUGINBINDIR)
	install -m 755 src/src/wavelet-denoise $(DESTDIR)$(PLUGINBINDIR)

clean:
	rm -f build-stamp
	make -C src clean

.PHONY: install clean build