File: Makefile

package info (click to toggle)
librpc-xml-perl 0.82-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, trixie
  • size: 1,352 kB
  • sloc: perl: 9,665; xml: 3,020; makefile: 17
file content (13 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Simple makefile to create method files from the inputs

MAKEMETHOD := make_method
METHODS := linux.proc.cpuinfo linux.proc.meminfo
XPL_FILES := $(METHODS:=.xpl)

%.xpl : %.code %.help %.base
	$(MAKEMETHOD) --base=$*

all:	$(XPL_FILES)

clean:
	rm -f $(XPL_FILES)