File: Makefile.in

package info (click to toggle)
cfengine 1.4.9-3
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 3,540 kB
  • ctags: 1,861
  • sloc: ansic: 25,408; sh: 1,708; perl: 1,088; lex: 690; makefile: 435; lisp: 182; yacc: 101; csh: 24
file content (38 lines) | stat: -rw-r--r-- 865 bytes parent folder | download | duplicates (2)
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
38
################################################################
#	Makefile for CFEngine's inputs directory
################################################################

prefix = @prefix@

datadir = @datadir@
acdatadir = ${datadir}/cfengine

VPATH = @srcdir@

INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@

MKINSTALLDIR = @top_srcdir@/bin/mkinstalldirs

SCRIPTS = cf.hpux.example cf.linux.example cf.motd.example cf.preconf.example \
		cf.site.example cf.solaris.example cf.sun4.example \
		cf.ultrix.example cf.users.example cfengine.conf.example cf.main.example \
                cf.groups.example cfd.conf.example

RM = rm -f

all: ${SCRIPTS}
	@echo "All scripts built"

install: ${SCRIPTS}
	${MKINSTALLDIR} ${acdatadir}
	for x in $?; \
	do \
	${INSTALL_DATA} $$x ${acdatadir}; \
	done

clean:
	@echo "Nothing to clean"

distclean: clean
	${RM} Makefile