~ubuntu-branches/ubuntu/gutsy/checkpolicy/gutsy

« back to all changes in this revision

Viewing changes to debian/common/copt.mk

  • Committer: Bazaar Package Importer
  • Author(s): Manoj Srivastava
  • Date: 2004-11-24 14:01:41 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041124140141-2w64gbhqynveunlv
Tags: 1.18-2
Update download location and copyright file, since the locations we
were pointing to are now forbidden (return a code 403).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
############################ -*- Mode: Makefile -*- ###########################
 
2
## copt.mk --- 
 
3
## Author           : Manoj Srivastava ( srivasta@glaurung.green-gryphon.com ) 
 
4
## Created On       : Sat Nov 15 02:48:40 2003
 
5
## Created On Node  : glaurung.green-gryphon.com
 
6
## Last Modified By : Manoj Srivastava
 
7
## Last Modified On : Sat Nov 15 02:49:07 2003
 
8
## Last Machine Used: glaurung.green-gryphon.com
 
9
## Update Count     : 1
 
10
## Status           : Unknown, Use with caution!
 
11
## HISTORY          : 
 
12
## Description      : 
 
13
## 
 
14
## arch-tag: a0045c20-f1b3-4852-9a4b-1a33ebd7c1b8
 
15
## 
 
16
###############################################################################
 
17
 
 
18
CC = cc
 
19
CFLAGS = -O2
 
20
PREFIX    := /usr
 
21
 
 
22
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
 
23
  CFLAGS += -g
 
24
endif
 
25
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
 
26
  STRIP += -s
 
27
  LDFLAGS += -s
 
28
  INT_INSTALL_TARGET = install 
 
29
else
 
30
  INT_INSTALL_TARGET = install
 
31
endif