File: Makefile

package info (click to toggle)
xml-core 0.09
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 212 kB
  • ctags: 30
  • sloc: perl: 558; makefile: 159; sh: 59; xml: 8
file content (37 lines) | stat: -rw-r--r-- 948 bytes parent folder | download | duplicates (8)
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
26
27
28
29
30
31
32
33
34
35
36
37
## ----------------------------------------------------------------------
## Makefile : makefile for xml-core/schemas
## ----------------------------------------------------------------------

## ----------------------------------------------------------------------
include ../MAKE/include

## ----------------------------------------------------------------------
## Schemas directory definitions
pkg_name	= xml-core
pkg_schema_dir	= $(schema_dir)/$(pkg_name)

## ----------------------------------------------------------------------
## Schemas file definitions
schemas		= \
		catalog.dtd \
		tr9401.dtd

## ----------------------------------------------------------------------
## targets

all:

install:

		set -e; \
		$(INSTALL_DIR) $(pkg_schema_dir); \
		for f in $(schemas); \
		do \
			$(INSTALL_FILE) $$f $(pkg_schema_dir); \
		done

.PHONY:		\
		all \
		install

## ----------------------------------------------------------------------