~ubuntu-branches/ubuntu/breezy/pam/breezy

« back to all changes in this revision

Viewing changes to Linux-PAM/modules/pam_time/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2004-06-28 14:28:08 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040628142808-adikk7vtfg3pzcjw
Tags: 0.76-22
* Add uploaders
* Document location of repository
* Fix options containing arguments in pam_unix, Closes: #254904

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: Makefile,v 1.1 2001/04/29 04:17:35 hartmans Exp $
 
2
#
 
3
# This Makefile controls a build process of $(TITLE) module for
 
4
# Linux-PAM. You should not modify this Makefile (unless you know
 
5
# what you are doing!).
 
6
#
 
7
 
 
8
include ../../Make.Rules
 
9
 
 
10
TITLE=pam_time
 
11
LOCAL_CONFILE=./time.conf
 
12
INSTALLED_CONFILE=$(SCONFIGD)/time.conf
 
13
 
 
14
DEFS=-DDEFAULT_CONF_FILE=\"$(INSTALLED_CONFILE)\"
 
15
CFLAGS += $(DEFS)
 
16
 
 
17
MODULE_SIMPLE_INSTALL=bash -f ../install_conf "$(FAKEROOT)" "$(SCONFIGD)" "$(INSTALLED_CONFILE)" "$(TITLE)" "$(LOCAL_CONFILE)"
 
18
MODULE_SIMPLE_REMOVE=rm -f $(FAKEROOT)$(INSTALLED_CONFILE)
 
19
MODULE_SIMPLE_CLEAN=rm -f ./.ignore_age
 
20
 
 
21
include ../Simple.Rules