File: Makefile

package info (click to toggle)
fidogate 4.2.8-3
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 5,804 kB
  • ctags: 2,843
  • sloc: ansic: 22,020; perl: 2,885; sh: 1,550; yacc: 671; makefile: 582
file content (49 lines) | stat: -rw-r--r-- 857 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#:ts=8
#
#    $Id: Makefile,v 4.6 1997/10/22 19:18:46 mj Exp $
#
#    Makefile for FIDOGATE scripts/filebase/
#

#
# Normally it should not be necessary to modify this file, see
# ../config.make and ../rules.make
#

TOPDIR		= ../..

include $(TOPDIR)/config.make
include $(TOPDIR)/rules.make


PROGS		= logcheck logmaint logreport logstat logdaily sendmailstat\
		  newsyslog rc.fidogate


all:		$(PROGS)



install:
	$(INSTALL_PROG)   newsyslog       $(PREFIX)$(BINDIR)
	$(INSTALL_PROG)   sendmailstat    $(PREFIX)$(BINDIR)
	$(INSTALL_PROG)   logmaint        $(PREFIX)$(LIBDIR)
	$(INSTALL_PROG)   logreport       $(PREFIX)$(LIBDIR)
	$(INSTALL_PROG)   logstat         $(PREFIX)$(LIBDIR)


clean:
	rm -f $(PROGS)
	rm -f *~ *.bak *.o tags TAGS core paths.tmp


#
# Dependencies
#
depend:

depend-all:

ifeq (.depend,$(wildcard .depend))
include .depend
endif