File: Makefile.am

package info (click to toggle)
notification-daemon 3.20.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,860 kB
  • sloc: sh: 4,697; ansic: 3,125; makefile: 112; xml: 36; sed: 16
file content (20 lines) | stat: -rw-r--r-- 561 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
20
desktopdir          = $(datadir)/applications
desktop_in_in_files = notification-daemon.desktop.in.in
desktop_in_files    = notification-daemon.desktop.in
desktop_DATA        = $(desktop_in_files:.desktop.in=.desktop)

%.desktop.in: %.desktop.in.in
	$(AM_V_GEN) sed -e 's,[@]libexecdir[@],$(libexecdir),g' < $< > $@

%.desktop: %.desktop.in
	$(AM_V_GEN) $(MSGFMT) --desktop --template $< -o $@-t \
		-d $(top_srcdir)/po && mv $@-t $@

EXTRA_DIST = \
	$(desktop_in_in_files)

CLEANFILES = \
	$(desktop_in_files) \
	$(desktop_DATA)

-include $(top_srcdir)/git.mk