~ubuntu-branches/ubuntu/dapper/cpufreqd/dapper

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Mattia Dongili
  • Date: 2005-11-27 18:47:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051127184742-9h26euwetr6kh1e6
Tags: 2.0.0-1

* New upstream release.
* cpufreqd.init: exit succesfully in case a stop is issued and
  cpufreqd is found running as requested by LSB thus making it
  possible to remove cpufreqd when cpufreqd itsef is stopped
  (closes: #340133)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# PARTICULAR PURPOSE.
14
14
 
15
15
@SET_MAKE@
16
 
 
17
 
 
18
 
 
19
 
SOURCES = $(libsys_acpi_la_SOURCES) $(libsys_apm_la_SOURCES) $(libsys_pmu_la_SOURCES) $(cpufreqd_SOURCES)
20
 
 
21
16
srcdir = @srcdir@
22
17
top_srcdir = @top_srcdir@
23
18
VPATH = @srcdir@
39
34
PRE_UNINSTALL = :
40
35
POST_UNINSTALL = :
41
36
host_triplet = @host@
42
 
sbin_PROGRAMS = cpufreqd$(EXEEXT)
43
 
DIST_COMMON = README $(am__configure_deps) $(noinst_HEADERS) \
44
 
        $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
45
 
        $(srcdir)/config.h.in $(top_srcdir)/configure AUTHORS COPYING \
46
 
        ChangeLog INSTALL NEWS TODO config.guess config.sub depcomp \
47
 
        install-sh ltmain.sh missing
 
37
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
 
38
        $(srcdir)/Makefile.in $(srcdir)/config.h.in \
 
39
        $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
 
40
        TODO compile config.guess config.sub depcomp install-sh \
 
41
        ltmain.sh missing
48
42
subdir = .
49
43
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
50
44
am__aclocal_m4_deps = $(top_srcdir)/configure.in
55
49
mkinstalldirs = $(mkdir_p)
56
50
CONFIG_HEADER = config.h
57
51
CONFIG_CLEAN_FILES =
58
 
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(man8dir)"
59
 
libLTLIBRARIES_INSTALL = $(INSTALL)
60
 
LTLIBRARIES = $(lib_LTLIBRARIES)
61
 
libsys_acpi_la_LIBADD =
62
 
am_libsys_acpi_la_OBJECTS = libsys.lo libsys_acpi.lo
63
 
libsys_acpi_la_OBJECTS = $(am_libsys_acpi_la_OBJECTS)
64
 
libsys_apm_la_LIBADD =
65
 
am_libsys_apm_la_OBJECTS = libsys.lo libsys_apm.lo
66
 
libsys_apm_la_OBJECTS = $(am_libsys_apm_la_OBJECTS)
67
 
libsys_pmu_la_LIBADD =
68
 
am_libsys_pmu_la_OBJECTS = libsys.lo libsys_pmu.lo
69
 
libsys_pmu_la_OBJECTS = $(am_libsys_pmu_la_OBJECTS)
70
 
sbinPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
71
 
PROGRAMS = $(sbin_PROGRAMS)
72
 
am_cpufreqd_OBJECTS = main.$(OBJEXT) config_parser.$(OBJEXT) \
73
 
        sys_check.$(OBJEXT) string_list.$(OBJEXT)
74
 
cpufreqd_OBJECTS = $(am_cpufreqd_OBJECTS)
75
 
cpufreqd_LDADD = $(LDADD)
76
 
DEFAULT_INCLUDES = -I. -I$(srcdir) -I.
77
 
depcomp = $(SHELL) $(top_srcdir)/depcomp
78
 
am__depfiles_maybe = depfiles
79
 
@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/config_parser.Po \
80
 
@AMDEP_TRUE@    ./$(DEPDIR)/libsys.Plo ./$(DEPDIR)/libsys_acpi.Plo \
81
 
@AMDEP_TRUE@    ./$(DEPDIR)/libsys_apm.Plo \
82
 
@AMDEP_TRUE@    ./$(DEPDIR)/libsys_pmu.Plo ./$(DEPDIR)/main.Po \
83
 
@AMDEP_TRUE@    ./$(DEPDIR)/string_list.Po \
84
 
@AMDEP_TRUE@    ./$(DEPDIR)/sys_check.Po
85
 
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
86
 
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
87
 
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) \
88
 
        $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
89
 
        $(AM_CFLAGS) $(CFLAGS)
90
 
CCLD = $(CC)
91
 
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
92
 
        $(AM_LDFLAGS) $(LDFLAGS) -o $@
93
 
SOURCES = $(libsys_acpi_la_SOURCES) $(libsys_apm_la_SOURCES) \
94
 
        $(libsys_pmu_la_SOURCES) $(cpufreqd_SOURCES)
95
 
DIST_SOURCES = $(libsys_acpi_la_SOURCES) $(libsys_apm_la_SOURCES) \
96
 
        $(libsys_pmu_la_SOURCES) $(cpufreqd_SOURCES)
 
52
SOURCES =
 
53
DIST_SOURCES =
97
54
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
98
55
        html-recursive info-recursive install-data-recursive \
99
56
        install-exec-recursive install-info-recursive \
100
57
        install-recursive installcheck-recursive installdirs-recursive \
101
58
        pdf-recursive ps-recursive uninstall-info-recursive \
102
59
        uninstall-recursive
103
 
man5dir = $(mandir)/man5
104
 
man8dir = $(mandir)/man8
105
 
NROFF = nroff
106
 
MANS = $(man5_MANS) $(man8_MANS)
107
 
HEADERS = $(noinst_HEADERS)
108
60
ETAGS = etags
109
61
DIST_SUBDIRS = $(SUBDIRS)
110
62
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
114
66
  { test ! -d $(distdir) \
115
67
    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
116
68
         && rm -fr $(distdir); }; }
117
 
DIST_ARCHIVES = $(distdir).tar.gz
 
69
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
118
70
GZIP_ENV = --best
119
71
distuninstallcheck_listfiles = find . -type f -print
120
72
distcleancheck_listfiles = find . -type f -print
121
73
ACLOCAL = @ACLOCAL@
 
74
ACPI_PLUGIN_FALSE = @ACPI_PLUGIN_FALSE@
 
75
ACPI_PLUGIN_TRUE = @ACPI_PLUGIN_TRUE@
122
76
AMDEP_FALSE = @AMDEP_FALSE@
123
77
AMDEP_TRUE = @AMDEP_TRUE@
124
78
AMTAR = @AMTAR@
 
79
APM_PLUGIN_FALSE = @APM_PLUGIN_FALSE@
 
80
APM_PLUGIN_TRUE = @APM_PLUGIN_TRUE@
125
81
AR = @AR@
126
82
AUTOCONF = @AUTOCONF@
127
83
AUTOHEADER = @AUTOHEADER@
133
89
CPP = @CPP@
134
90
CPPFLAGS = @CPPFLAGS@
135
91
CPUFREQD_CONFPATH = @CPUFREQD_CONFPATH@
 
92
CPUFREQD_CONF_DIR = @CPUFREQD_CONF_DIR@
 
93
CPUFREQD_LDFLAGS = @CPUFREQD_LDFLAGS@
136
94
CPUFREQD_LIBPATH = @CPUFREQD_LIBPATH@
137
95
CPUFREQD_STATEPATH = @CPUFREQD_STATEPATH@
138
96
CXX = @CXX@
162
120
LN_S = @LN_S@
163
121
LTLIBOBJS = @LTLIBOBJS@
164
122
MAKEINFO = @MAKEINFO@
 
123
NFORCE2_PLUGIN_FALSE = @NFORCE2_PLUGIN_FALSE@
 
124
NFORCE2_PLUGIN_TRUE = @NFORCE2_PLUGIN_TRUE@
 
125
NVCLOCK_PLUGIN_FALSE = @NVCLOCK_PLUGIN_FALSE@
 
126
NVCLOCK_PLUGIN_TRUE = @NVCLOCK_PLUGIN_TRUE@
 
127
NVCLOCK_SRCDIR = @NVCLOCK_SRCDIR@
165
128
OBJEXT = @OBJEXT@
166
129
PACKAGE = @PACKAGE@
167
130
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
170
133
PACKAGE_TARNAME = @PACKAGE_TARNAME@
171
134
PACKAGE_VERSION = @PACKAGE_VERSION@
172
135
PATH_SEPARATOR = @PATH_SEPARATOR@
 
136
PMU_PLUGIN_FALSE = @PMU_PLUGIN_FALSE@
 
137
PMU_PLUGIN_TRUE = @PMU_PLUGIN_TRUE@
173
138
RANLIB = @RANLIB@
 
139
SENSORS_PLUGIN_FALSE = @SENSORS_PLUGIN_FALSE@
 
140
SENSORS_PLUGIN_TRUE = @SENSORS_PLUGIN_TRUE@
 
141
SENSORS_SRCDIR = @SENSORS_SRCDIR@
174
142
SET_MAKE = @SET_MAKE@
175
143
SHELL = @SHELL@
176
144
STRIP = @STRIP@
220
188
target_cpu = @target_cpu@
221
189
target_os = @target_os@
222
190
target_vendor = @target_vendor@
223
 
AM_CFLAGS = -W -Wall -Wshadow -W -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wundef -Wbad-function-cast -Waggregate-return -ansi -pedantic -D_GNU_SOURCE
224
191
CTAGS = ctags
225
192
EXTRA_DIST = cpufreqd.conf \
226
 
             scripts/debian/cpufreqd \
227
 
             scripts/gentoo/cpufreqd \
228
 
             scripts/mandrake/cpufreqd.init.mdk \
229
 
             scripts/suse/cpufreqd.initd-SUSE \
230
 
             scripts/suse/cpufreqd.sysconfig \
231
193
             README \
232
194
             INSTALL \
233
195
             NEWS \
234
196
             AUTHORS \
235
197
             TODO \
236
198
             ChangeLog \
237
 
             examples/cpufreqd.conf-2.4 \
238
 
             examples/cpufreqd.conf-2.6
239
 
 
240
 
SUBDIRS = . manpages
241
 
cpufreqd_SOURCES = \
242
 
                    main.c \
243
 
                    config_parser.c \
244
 
                    sys_check.c \
245
 
                    string_list.c
246
 
 
247
 
lib_LTLIBRARIES = \
248
 
                  libsys_acpi.la \
249
 
                  libsys_apm.la \
250
 
                  libsys_pmu.la
251
 
 
252
 
libsys_acpi_la_SOURCES = \
253
 
                          libsys.c \
254
 
                          libsys_acpi.c
255
 
 
256
 
libsys_acpi_la_LDFLAGS = -module -avoid-version
257
 
libsys_apm_la_SOURCES = \
258
 
                        libsys.c \
259
 
                        libsys_apm.c
260
 
 
261
 
libsys_apm_la_LDFLAGS = -module -avoid-version
262
 
libsys_pmu_la_SOURCES = \
263
 
                        libsys.c \
264
 
                        libsys_pmu.c
265
 
 
266
 
libsys_pmu_la_LDFLAGS = -module -avoid-version
267
 
noinst_HEADERS = \
268
 
                config_parser.h \
269
 
                cpufreqd.h \
270
 
                main.h \
271
 
                libsys.h \
272
 
                sys_check.h \
273
 
                string_list.h
274
 
 
275
 
man8_MANS = manpages/cpufreqd.8
276
 
man5_MANS = manpages/cpufreqd.conf.5
 
199
             prepare.sh
 
200
 
 
201
#             scripts/debian/cpufreqd \
 
202
#             scripts/gentoo/cpufreqd \
 
203
#             scripts/mandrake/cpufreqd.init.mdk \
 
204
#             scripts/suse/cpufreqd.initd-SUSE \
 
205
#             scripts/suse/cpufreqd.sysconfig \
 
206
#             examples/cpufreqd.conf-2.4 \
 
207
#             examples/cpufreqd.conf-2.6
 
208
SUBDIRS = src utils manpages
277
209
all: config.h
278
210
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
279
211
 
280
212
.SUFFIXES:
281
 
.SUFFIXES: .c .lo .o .obj
282
213
am--refresh:
283
214
        @:
284
215
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
285
216
        @for dep in $?; do \
286
217
          case '$(am__configure_deps)' in \
287
218
            *$$dep*) \
288
 
              echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
289
 
              cd $(srcdir) && $(AUTOMAKE) --gnu  \
 
219
              echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
 
220
              cd $(srcdir) && $(AUTOMAKE) --foreign  \
290
221
                && exit 0; \
291
222
              exit 1;; \
292
223
          esac; \
293
224
        done; \
294
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  Makefile'; \
 
225
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  Makefile'; \
295
226
        cd $(top_srcdir) && \
296
 
          $(AUTOMAKE) --gnu  Makefile
 
227
          $(AUTOMAKE) --foreign  Makefile
297
228
.PRECIOUS: Makefile
298
229
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
299
230
        @case '$?' in \
329
260
 
330
261
distclean-hdr:
331
262
        -rm -f config.h stamp-h1
332
 
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
333
 
        @$(NORMAL_INSTALL)
334
 
        test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
335
 
        @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
336
 
          if test -f $$p; then \
337
 
            f="`echo $$p | sed -e 's|^.*/||'`"; \
338
 
            echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
339
 
            $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
340
 
          else :; fi; \
341
 
        done
342
 
 
343
 
uninstall-libLTLIBRARIES:
344
 
        @$(NORMAL_UNINSTALL)
345
 
        @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
346
 
            p="`echo $$p | sed -e 's|^.*/||'`"; \
347
 
          echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
348
 
          $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
349
 
        done
350
 
 
351
 
clean-libLTLIBRARIES:
352
 
        -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
353
 
        @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
354
 
          dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
355
 
          test "$$dir" != "$$p" || dir=.; \
356
 
          echo "rm -f \"$${dir}/so_locations\""; \
357
 
          rm -f "$${dir}/so_locations"; \
358
 
        done
359
 
libsys_acpi.la: $(libsys_acpi_la_OBJECTS) $(libsys_acpi_la_DEPENDENCIES) 
360
 
        $(LINK) -rpath $(libdir) $(libsys_acpi_la_LDFLAGS) $(libsys_acpi_la_OBJECTS) $(libsys_acpi_la_LIBADD) $(LIBS)
361
 
libsys_apm.la: $(libsys_apm_la_OBJECTS) $(libsys_apm_la_DEPENDENCIES) 
362
 
        $(LINK) -rpath $(libdir) $(libsys_apm_la_LDFLAGS) $(libsys_apm_la_OBJECTS) $(libsys_apm_la_LIBADD) $(LIBS)
363
 
libsys_pmu.la: $(libsys_pmu_la_OBJECTS) $(libsys_pmu_la_DEPENDENCIES) 
364
 
        $(LINK) -rpath $(libdir) $(libsys_pmu_la_LDFLAGS) $(libsys_pmu_la_OBJECTS) $(libsys_pmu_la_LIBADD) $(LIBS)
365
 
install-sbinPROGRAMS: $(sbin_PROGRAMS)
366
 
        @$(NORMAL_INSTALL)
367
 
        test -z "$(sbindir)" || $(mkdir_p) "$(DESTDIR)$(sbindir)"
368
 
        @list='$(sbin_PROGRAMS)'; for p in $$list; do \
369
 
          p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
370
 
          if test -f $$p \
371
 
             || test -f $$p1 \
372
 
          ; then \
373
 
            f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
374
 
           echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
375
 
           $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(sbindir)/$$f" || exit 1; \
376
 
          else :; fi; \
377
 
        done
378
 
 
379
 
uninstall-sbinPROGRAMS:
380
 
        @$(NORMAL_UNINSTALL)
381
 
        @list='$(sbin_PROGRAMS)'; for p in $$list; do \
382
 
          f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
383
 
          echo " rm -f '$(DESTDIR)$(sbindir)/$$f'"; \
384
 
          rm -f "$(DESTDIR)$(sbindir)/$$f"; \
385
 
        done
386
 
 
387
 
clean-sbinPROGRAMS:
388
 
        @list='$(sbin_PROGRAMS)'; for p in $$list; do \
389
 
          f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
390
 
          echo " rm -f $$p $$f"; \
391
 
          rm -f $$p $$f ; \
392
 
        done
393
 
cpufreqd$(EXEEXT): $(cpufreqd_OBJECTS) $(cpufreqd_DEPENDENCIES) 
394
 
        @rm -f cpufreqd$(EXEEXT)
395
 
        $(LINK) $(cpufreqd_LDFLAGS) $(cpufreqd_OBJECTS) $(cpufreqd_LDADD) $(LIBS)
396
 
 
397
 
mostlyclean-compile:
398
 
        -rm -f *.$(OBJEXT)
399
 
 
400
 
distclean-compile:
401
 
        -rm -f *.tab.c
402
 
 
403
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/config_parser.Po@am__quote@
404
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsys.Plo@am__quote@
405
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsys_acpi.Plo@am__quote@
406
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsys_apm.Plo@am__quote@
407
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsys_pmu.Plo@am__quote@
408
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
409
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/string_list.Po@am__quote@
410
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sys_check.Po@am__quote@
411
 
 
412
 
.c.o:
413
 
@am__fastdepCC_TRUE@    if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
414
 
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
415
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
416
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
417
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
418
 
@am__fastdepCC_FALSE@   $(COMPILE) -c $<
419
 
 
420
 
.c.obj:
421
 
@am__fastdepCC_TRUE@    if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
422
 
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
423
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
424
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
425
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
426
 
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
427
 
 
428
 
.c.lo:
429
 
@am__fastdepCC_TRUE@    if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
430
 
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
431
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
432
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
433
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
434
 
@am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
435
263
 
436
264
mostlyclean-libtool:
437
265
        -rm -f *.lo
442
270
distclean-libtool:
443
271
        -rm -f libtool
444
272
uninstall-info-am:
445
 
install-man5: $(man5_MANS) $(man_MANS)
446
 
        @$(NORMAL_INSTALL)
447
 
        test -z "$(man5dir)" || $(mkdir_p) "$(DESTDIR)$(man5dir)"
448
 
        @list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \
449
 
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
450
 
        for i in $$l2; do \
451
 
          case "$$i" in \
452
 
            *.5*) list="$$list $$i" ;; \
453
 
          esac; \
454
 
        done; \
455
 
        for i in $$list; do \
456
 
          if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
457
 
          else file=$$i; fi; \
458
 
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
459
 
          case "$$ext" in \
460
 
            5*) ;; \
461
 
            *) ext='5' ;; \
462
 
          esac; \
463
 
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
464
 
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
465
 
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
466
 
          echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \
467
 
          $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst"; \
468
 
        done
469
 
uninstall-man5:
470
 
        @$(NORMAL_UNINSTALL)
471
 
        @list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \
472
 
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
473
 
        for i in $$l2; do \
474
 
          case "$$i" in \
475
 
            *.5*) list="$$list $$i" ;; \
476
 
          esac; \
477
 
        done; \
478
 
        for i in $$list; do \
479
 
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
480
 
          case "$$ext" in \
481
 
            5*) ;; \
482
 
            *) ext='5' ;; \
483
 
          esac; \
484
 
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
485
 
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
486
 
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
487
 
          echo " rm -f '$(DESTDIR)$(man5dir)/$$inst'"; \
488
 
          rm -f "$(DESTDIR)$(man5dir)/$$inst"; \
489
 
        done
490
 
install-man8: $(man8_MANS) $(man_MANS)
491
 
        @$(NORMAL_INSTALL)
492
 
        test -z "$(man8dir)" || $(mkdir_p) "$(DESTDIR)$(man8dir)"
493
 
        @list='$(man8_MANS) $(dist_man8_MANS) $(nodist_man8_MANS)'; \
494
 
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
495
 
        for i in $$l2; do \
496
 
          case "$$i" in \
497
 
            *.8*) list="$$list $$i" ;; \
498
 
          esac; \
499
 
        done; \
500
 
        for i in $$list; do \
501
 
          if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
502
 
          else file=$$i; fi; \
503
 
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
504
 
          case "$$ext" in \
505
 
            8*) ;; \
506
 
            *) ext='8' ;; \
507
 
          esac; \
508
 
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
509
 
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
510
 
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
511
 
          echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
512
 
          $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst"; \
513
 
        done
514
 
uninstall-man8:
515
 
        @$(NORMAL_UNINSTALL)
516
 
        @list='$(man8_MANS) $(dist_man8_MANS) $(nodist_man8_MANS)'; \
517
 
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
518
 
        for i in $$l2; do \
519
 
          case "$$i" in \
520
 
            *.8*) list="$$list $$i" ;; \
521
 
          esac; \
522
 
        done; \
523
 
        for i in $$list; do \
524
 
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
525
 
          case "$$ext" in \
526
 
            8*) ;; \
527
 
            *) ext='8' ;; \
528
 
          esac; \
529
 
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
530
 
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
531
 
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
532
 
          echo " rm -f '$(DESTDIR)$(man8dir)/$$inst'"; \
533
 
          rm -f "$(DESTDIR)$(man8dir)/$$inst"; \
534
 
        done
535
273
 
536
274
# This directory's subdirectories are mostly independent; you can cd
537
275
# into them and run `make' without going through this Makefile.
655
393
distdir: $(DISTFILES)
656
394
        $(am__remove_distdir)
657
395
        mkdir $(distdir)
658
 
        $(mkdir_p) $(distdir)/examples $(distdir)/scripts/debian $(distdir)/scripts/gentoo $(distdir)/scripts/mandrake $(distdir)/scripts/suse
 
396
        $(mkdir_p) $(distdir)/manpages
659
397
        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
660
398
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
661
399
        list='$(DISTFILES)'; for file in $$list; do \
703
441
dist-gzip: distdir
704
442
        $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
705
443
        $(am__remove_distdir)
706
 
 
707
444
dist-bzip2: distdir
708
445
        $(AMTAR) chof - $(distdir) | bzip2 -9 -c >$(distdir).tar.bz2
709
446
        $(am__remove_distdir)
723
460
 
724
461
dist dist-all: distdir
725
462
        $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
 
463
        $(AMTAR) chof - $(distdir) | bzip2 -9 -c >$(distdir).tar.bz2
726
464
        $(am__remove_distdir)
727
465
 
728
466
# This target untars the dist file and tries a VPATH configuration.  Then
794
532
               exit 1; } >&2
795
533
check-am: all-am
796
534
check: check-recursive
797
 
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(MANS) $(HEADERS) \
798
 
                config.h
 
535
all-am: Makefile config.h
799
536
installdirs: installdirs-recursive
800
537
installdirs-am:
801
 
        for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(man8dir)"; do \
802
 
          test -z "$$dir" || $(mkdir_p) "$$dir"; \
803
 
        done
804
538
install: install-recursive
805
539
install-exec: install-exec-recursive
806
540
install-data: install-data-recursive
827
561
        @echo "it deletes files that may require special tools to rebuild."
828
562
clean: clean-recursive
829
563
 
830
 
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
831
 
        clean-sbinPROGRAMS mostlyclean-am
 
564
clean-am: clean-generic clean-libtool mostlyclean-am
832
565
 
833
566
distclean: distclean-recursive
834
567
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
835
 
        -rm -rf ./$(DEPDIR)
836
568
        -rm -f Makefile
837
 
distclean-am: clean-am distclean-compile distclean-generic \
838
 
        distclean-hdr distclean-libtool distclean-tags
 
569
distclean-am: clean-am distclean-generic distclean-hdr \
 
570
        distclean-libtool distclean-tags
839
571
 
840
572
dvi: dvi-recursive
841
573
 
847
579
 
848
580
info-am:
849
581
 
850
 
install-data-am: install-data-local install-man
 
582
install-data-am: install-data-local
851
583
 
852
 
install-exec-am: install-libLTLIBRARIES install-sbinPROGRAMS
 
584
install-exec-am:
853
585
 
854
586
install-info: install-info-recursive
855
587
 
856
 
install-man: install-man5 install-man8
 
588
install-man:
857
589
 
858
590
installcheck-am:
859
591
 
860
592
maintainer-clean: maintainer-clean-recursive
861
593
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
862
594
        -rm -rf $(top_srcdir)/autom4te.cache
863
 
        -rm -rf ./$(DEPDIR)
864
595
        -rm -f Makefile
865
596
maintainer-clean-am: distclean-am maintainer-clean-generic
866
597
 
867
598
mostlyclean: mostlyclean-recursive
868
599
 
869
 
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
870
 
        mostlyclean-libtool
 
600
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
871
601
 
872
602
pdf: pdf-recursive
873
603
 
877
607
 
878
608
ps-am:
879
609
 
880
 
uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES uninstall-man \
881
 
        uninstall-sbinPROGRAMS
 
610
uninstall-am: uninstall-info-am
882
611
 
883
612
uninstall-info: uninstall-info-recursive
884
613
 
885
 
uninstall-man: uninstall-man5 uninstall-man8
886
 
 
887
614
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
888
 
        check-am clean clean-generic clean-libLTLIBRARIES \
889
 
        clean-libtool clean-recursive clean-sbinPROGRAMS ctags \
890
 
        ctags-recursive dist dist-all dist-bzip2 dist-gzip dist-shar \
891
 
        dist-tarZ dist-zip distcheck distclean distclean-compile \
 
615
        check-am clean clean-generic clean-libtool clean-recursive \
 
616
        ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
 
617
        dist-shar dist-tarZ dist-zip distcheck distclean \
892
618
        distclean-generic distclean-hdr distclean-libtool \
893
619
        distclean-recursive distclean-tags distcleancheck distdir \
894
620
        distuninstallcheck dvi dvi-am html html-am info info-am \
895
621
        install install-am install-data install-data-am \
896
622
        install-data-local install-exec install-exec-am install-info \
897
 
        install-info-am install-libLTLIBRARIES install-man \
898
 
        install-man5 install-man8 install-sbinPROGRAMS install-strip \
899
 
        installcheck installcheck-am installdirs installdirs-am \
900
 
        maintainer-clean maintainer-clean-generic \
901
 
        maintainer-clean-recursive mostlyclean mostlyclean-compile \
902
 
        mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
903
 
        pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
904
 
        uninstall-info-am uninstall-libLTLIBRARIES uninstall-man \
905
 
        uninstall-man5 uninstall-man8 uninstall-sbinPROGRAMS
906
 
 
 
623
        install-info-am install-man install-strip installcheck \
 
624
        installcheck-am installdirs installdirs-am maintainer-clean \
 
625
        maintainer-clean-generic maintainer-clean-recursive \
 
626
        mostlyclean mostlyclean-generic mostlyclean-libtool \
 
627
        mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
 
628
        uninstall uninstall-am uninstall-info-am
 
629
 
 
630
 
 
631
#man8_MANS = manpages/cpufreqd.8
 
632
#man5_MANS = manpages/cpufreqd.conf.5
907
633
 
908
634
install-data-local:
909
635
        if [ -f $(DESTDIR)/$(sysconfdir)/cpufreqd.conf ]; then \
916
642
        if [ -f ./tags ]; then \
917
643
                rm ./tags; \
918
644
        fi; \
919
 
        ctags *.[ch];
 
645
        ctags -f tags src/*.[ch] utils/*.[ch];
 
646
 
 
647
cscope:
 
648
        if [ -f ./cscope.out ] ; then \
 
649
                rm ./cscope.out; \
 
650
        fi; \
 
651
        cscope -R -b -fcscope.out
920
652
 
921
653
#sysconf_DATA = cpufreqd.conf
922
654
# Tell versions [3.59,3.63) of GNU make to not export all variables.