Home | History | Annotate | Line # | Download | only in cmirrord
      1 #
      2 # Copyright (C) 2009 Red Hat, Inc. All rights reserved.
      3 #
      4 # This file is part of LVM2.
      5 #
      6 # This copyrighted material is made available to anyone wishing to use,
      7 # modify, copy, or redistribute it subject to the terms and conditions
      8 # of the GNU General Public License v.2.
      9 #
     10 # You should have received a copy of the GNU General Public License
     11 # along with this program; if not, write to the Free Software Foundation,
     12 # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     13 
     14 srcdir = .
     15 top_srcdir = ../..
     16 top_builddir = ../..
     17 
     18 
     19 CPG_LIBS = 
     20 CPG_CFLAGS = 
     21 SACKPT_LIBS = 
     22 SACKPT_CFLAGS = 
     23 
     24 SOURCES = clogd.c cluster.c functions.c link_mon.c local.c logging.c
     25 
     26 TARGETS = cmirrord
     27 
     28 include ../../make.tmpl
     29 
     30 LIBS += -ldevmapper
     31 LMLIBS += $(CPG_LIBS) $(SACKPT_LIBS)
     32 CFLAGS += $(CPG_CFLAGS) $(SACKPT_CFLAGS)
     33 
     34 cmirrord: $(OBJECTS) $(top_builddir)/lib/liblvm-internal.a
     35 	$(CC) $(CFLAGS) $(LDFLAGS) -o cmirrord $(OBJECTS) \
     36 		$(LVMLIBS) $(LMLIBS) $(LIBS)
     37 
     38 install: $(TARGETS)
     39 	$(INSTALL) -D $(OWNER) $(GROUP) -m 555 $(STRIP) cmirrord \
     40 		$(usrsbindir)/cmirrord
     41