File: Makefile.am

package info (click to toggle)
gpp 2.28-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 824 kB
  • sloc: ansic: 2,889; sh: 1,256; makefile: 19
file content (20 lines) | stat: -rw-r--r-- 610 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
# Copyright (C) 2016 Tristan Miller <psychonaut@nothingisreal.com>
#  
# This file is free software; the author gives unlimited permission to
# copy and/or distribute it, with or without modifications.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even
# the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE.

man_MANS = gpp.1
dist_doc_DATA = gpp.html gpp.pp $(man_MANS)

gpp.html: gpp.pp
	../src/gpp -H -Dhtml $< -o $@

gpp.1:	gpp.pp
	../src/gpp -H -Dman $< -o $@

CLEANFILES = gpp.html gpp.1