File: Makefile.am

package info (click to toggle)
diff-pdf-wx 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 656 kB
  • sloc: sh: 4,150; cpp: 1,047; makefile: 21
file content (25 lines) | stat: -rw-r--r-- 629 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

bin_PROGRAMS = diff-pdf

diff_pdf_SOURCES = \
			diff-pdf.cpp \
			bmpviewer.cpp \
			bmpviewer.h \
			gutter.cpp \
			gutter.h

diff_pdf_CXXFLAGS = $(POPPLER_CFLAGS) $(WX_CXXFLAGS)
diff_pdf_LDADD = $(POPPLER_LIBS) $(WX_LIBS)

EXTRA_DIST = bootstrap gtk-zoom-in.xpm gtk-zoom-out.xpm README.md win32/fonts.conf win32/collect-dlls.sh

windows-dist: diff-pdf-win-$(VERSION).zip

diff-pdf-win-$(VERSION).zip: all
	rm -rf $@ windist
	$(srcdir)/win32/collect-dlls.sh windist diff-pdf.exe
	mkdir -p windist/fonts && cp -a $(srcdir)/win32/fonts.conf windist/fonts/
	(cd windist && zip -9r ../$@ .)
	rm -rf windist

.PHONY: windows-dist