blob: db6e592405c64e424b92813f5a8514b0f6a1f091 (
plain)
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
|
## Process this file with automake to produce a Makefile.in
AUTOMAKE_OPTIONS = 1.1 foreign
## Directory definitions
localedir = $(datadir)/locale
## Various options
CFLAGS = @CFLAGS@ @CWARNS@ -g $(XCFLAGS) -DLOCALEDIR=\"$(localedir)\"
OPTCFLAGS = @CFLAGS@ @OPTCFLAGS@ @CWARNS@ -g $(XCFLAGS) -DLOCALEDIR=\"$(localedir)\"
LDFLAGS = @LDFLAGS@ $(XLDFLAGS)
LIBS = @INTLLIBS@ @LIBS@ $(XLIBS)
CXXFLAGS = @CXXFLAGS@ @CWARNS@ -g $(XCXXFLAGS) -DLOCALEDIR=\"$(localedir)\"
OPTCXXFLAGS = @CXXFLAGS@ @OPTCFLAGS@ @CWARNS@ -g $(XCXXFLAGS) -DLOCALEDIR=\"$(localedir)\"
DEFS = -I$(top_srcdir)/include -I$(top_srcdir) -I$(srcdir) \
-I$(top_builddir) -I$(top_builddir)/include -I. \
-I$(top_srcdir)/intl -I$(top_builddir)/intl @DEFS@
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
## Automake variables
bin_PROGRAMS = md5sum
man_MANS = md5sum.1
md5sum_SOURCES = md5.c md5sum.c md5.h
EXTRA_DIST = md5sum.1
## End of file.
|