blob: 7f728144a029ad824398ebe965a1745119fdac2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
bin_SCRIPTS = caja-dropbox
CLEANFILES = $(bin_SCRIPTS) caja-dropbox.1 caja-dropbox.txt
EXTRA_DIST = caja-dropbox.in serializeimages.py caja-dropbox.txt.in docgen.py rst2man.py
man_MANS = caja-dropbox.1
caja-dropbox: caja-dropbox.in serializeimages.py
python serializeimages.py $(PACKAGE_VERSION) $(datadir)/applications < caja-dropbox.in > caja-dropbox
chmod +x caja-dropbox
caja-dropbox.1: caja-dropbox.txt.in caja-dropbox docgen.py
python docgen.py $(PACKAGE_VERSION) < caja-dropbox.txt.in > caja-dropbox.txt
$(RST2MAN) caja-dropbox.txt > caja-dropbox.1
SUBDIRS = data src
|