~ubuntu-branches/ubuntu/trusty/keepalived/trusty

« back to all changes in this revision

Viewing changes to keepalived/check/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt
  • Date: 2005-04-29 23:22:40 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050429232240-a8m3jtpi3cvuyyy2
Tags: 1.1.11-3
Added a warning about sarge kernels to README.Debian and 
the package description 

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#
3
3
# Keepalived OpenSource project.
4
4
#
5
 
# Copyright (C) 2001-2004 Alexandre Cassen, <acassen@linux-vs.org>
 
5
# Copyright (C) 2001-2005 Alexandre Cassen, <acassen@linux-vs.org>
6
6
 
7
7
KERNEL   = @KERN@
8
8
CC       = @CC@
9
9
INCLUDES = -I../include -I../../lib
10
10
CFLAGS   = @CFLAGS@ @CPPFLAGS@ $(INCLUDES) \
11
11
           -Wall -Wunused -Wstrict-prototypes
12
 
DEFS     = -D$(KERNEL) -D@IPVS_SUPPORT@ -D@IPVS_SYNCD@ -D@VRRP_SUPPORT@ @DFLAGS@ $(CIFLAGS)
 
12
DEFS     = -D$(KERNEL) -D@IPVS_SUPPORT@ -D@IPVS_SYNCD@ -D@VRRP_SUPPORT@ @DFLAGS@
13
13
COMPILE  = $(CC) $(CFLAGS) $(DEFS)
14
14
 
15
15
OBJS =  check_daemon.o check_data.o check_parser.o \
16
16
        check_api.o check_tcp.o check_http.o check_ssl.o \
17
 
        check_misc.o ipwrapper.o ipvswrapper.o
 
17
        check_smtp.o check_misc.o ipwrapper.o ipvswrapper.o
18
18
 
19
19
ifeq ($(KERNEL),_KRNL_2_2_)
20
20
  OBJS += ipfwwrapper.o
38
38
  ../include/check_parser.h ../include/check_data.h ../include/check_api.h \
39
39
  ../include/global_data.h ../include/ipwrapper.h ../include/ipwrapper.h \
40
40
  ../include/pidfile.h ../include/daemon.h ../../lib/list.h ../../lib/memory.h \
41
 
  ../../lib/parser.h ../../lib/watchdog.h ../include/vrrp_netlink.h \
 
41
  ../../lib/parser.h ../../lib/signals.h ../include/vrrp_netlink.h \
42
42
  ../include/vrrp_if.h
43
43
check_data.o: check_data.c ../include/check_data.h \
44
44
  ../include/check_api.h ../../lib/memory.h ../../lib/utils.h
58
58
check_ssl.o: check_ssl.c ../include/check_ssl.h ../include/check_api.h \
59
59
  ../../lib/memory.h ../../lib/parser.h ../include/smtp.h \
60
60
  ../../lib/utils.h
 
61
check_smtp.o: check_smtp.c ../include/check_smtp.h ../include/check_api.h \
 
62
  ../../lib/memory.h ../include/ipwrapper.h ../include/smtp.h \
 
63
  ../../lib/utils.h ../../lib/notify.h ../../lib/parser.h ../include/daemon.h
61
64
check_misc.o: check_misc.c ../include/check_misc.h ../include/check_api.h \
62
65
  ../../lib/memory.h ../include/ipwrapper.h ../include/smtp.h \
63
66
  ../../lib/utils.h ../../lib/notify.h ../../lib/parser.h ../include/daemon.h