File: Makefile

package info (click to toggle)
python-odf 1.3.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,356 kB
  • ctags: 1,902
  • sloc: python: 21,654; makefile: 352; sh: 10; xml: 2
file content (22 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all: odf csv2ods.1 

txt: csv2ods.txt

%.1: %.docbook 
	xmlto man $<

%.txt: %.docbook 
	xmlto txt $<

clean:
	rm -f *.1 *~ *.txt odf test.csv test2.ods test3.ods
odf:
	ln -s ../odf

test: clean odf
	@echo 1,2,3,4 > test.csv
	@echo 5,6,7,8 >> test.csv
	@echo 9,10,11,12 >> test.csv
	@python2 csv2ods -i test.csv -o test2.ods
	@python3 csv2ods -i test.csv -o test3.ods
	@echo created files test.csv, test2.ods and test3.ods