~ubuntu-branches/ubuntu/karmic/hddtemp/karmic

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno
  • Date: 2004-05-04 01:48:26 UTC
  • Revision ID: james.westby@ubuntu.com-20040504014826-px26mjroiu8gos6c
Tags: upstream-0.3-beta11
ImportĀ upstreamĀ versionĀ 0.3-beta11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
CLEANFILES = *~
 
3
 
 
4
sbin_PROGRAMS = hddtemp
 
5
 
 
6
hddtemp_SOURCES = ata.c ata.h \
 
7
                  db.c db.h \
 
8
                  hddtemp.c hddtemp.h \
 
9
                  scsi.c scsi.h \
 
10
                  scsicmds.c scsicmds.h \
 
11
                  backtrace.c backtrace.h \
 
12
                  utf8.c utf8.h 
 
13
 
 
14
hddtemp_CFLAGS = -Wall -W -rdynamic
 
15
#hddtemp_CFLAGS = -Wall -fomit-frame-pointer -rdynamic
 
16
hddtemp_LDADD = @LIBINTL@
 
17
 
 
18
localedir = $(datadir)/locale
 
19
 
 
20
INCLUDES = -I. -I$(srcdir) -I.. -I../intl -I$(top_srcdir)/intl
 
21
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
 
22
 
 
23
 
 
24