~wb-munzinger/+junk/ocfs2-tools

« back to all changes in this revision

Viewing changes to o2monitor/Makefile

  • Committer: David Weber
  • Date: 2012-01-30 08:42:00 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: wb@munzinger.de-20120130084200-c8cy478mu9fk7tkf
Import upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TOPDIR = ..
 
2
 
 
3
include $(TOPDIR)/Preamble.make
 
4
 
 
5
SBIN_EXTRA = o2hbmonitor
 
6
 
 
7
WARNINGS = -Wall -Wstrict-prototypes -Wno-format -Wmissing-prototypes \
 
8
           -Wmissing-declarations
 
9
 
 
10
CFLAGS += $(WARNINGS)
 
11
 
 
12
INCLUDES = -I$(TOPDIR)/include -I.
 
13
 
 
14
DEFINES = -DVERSION=\"$(VERSION)\"
 
15
 
 
16
CFILES = o2hbmonitor.c
 
17
 
 
18
OBJS = $(subst .c,.o,$(CFILES))
 
19
 
 
20
MANS = o2hbmonitor.8
 
21
 
 
22
DIST_FILES = $(CFILES) $(HFILES) o2hbmonitor.8.in
 
23
 
 
24
o2hbmonitor: $(OBJS)
 
25
        $(LINK)
 
26
 
 
27
include $(TOPDIR)/Postamble.make