File: Makefile.in

package info (click to toggle)
snmp 3.6-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,284 kB
  • ctags: 1,929
  • sloc: ansic: 18,710; sh: 585; makefile: 311
file content (37 lines) | stat: -rw-r--r-- 736 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
##
## etc/Makefile.in:						Dec 1996
##
## used to install two runtime-config files.
##

cprefix = /etc
FILES = snmpd.conf snmpd.agentinfo

all:
	@/bin/true

install:
	@for f in $(FILES) ; do \
	  if [ ! -f $(cprefix)/$$f ] ; then \
		echo cp $$f $(cprefix) ; \
		cp $$f $(cprefix) ; \
	  else \
		echo $(cprefix)/$$f exists - not copied. ; \
          fi ; \
	done
	@echo "**"
	@echo "**    If you have not done so:"
	@echo "**    Please run etc/installconf [-mini] password"
	@echo "**"
	@echo "**      - to install your V2usec useable set."
	@echo "**"



merk:
	@echo "** Please Note: You may wish to run etc/installconf [-mini] password"
	@echo "**              to install your V2usec useable set."
	@echo "**"

clean:
	@/bin/true