~ubuntu-branches/ubuntu/gutsy/ms-sys/gutsy

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Gürkan Sengün
  • Date: 2004-04-04 21:46:59 UTC
  • Revision ID: james.westby@ubuntu.com-20040404214659-fhd9uy0surgwxwvb
Tags: 1.1.3-1
* New upstream version.
* Changed my name to UTF-8 in debian/{changelog,copyright,control}
* Thanks Andree Leidenfrost <aleidenf@bigpond.net.au> for the help.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
# Paths
27
27
 
28
28
# Installation path
29
 
PREFIX = /usr/local
 
29
PREFIX = ${DESTDIR}/usr
30
30
BINDIR = $(PREFIX)/bin
31
31
LOCALEDIR = $(PREFIX)/share/locale
32
 
MANDIR = $(PREFIX)/man
 
32
MANDIR = $(PREFIX)/share/man
33
33
 
34
34
# Where your .c-files live
35
35
SRC = src
59
59
 
60
60
CC = gcc
61
61
INCLUDES = $(INCDIRS:%=-I %)
62
 
CFLAGS = -O2 -ansi -pedantic -Wall -c $(INCLUDES) \
 
62
#ifndef CFLAGS
 
63
CFLAGS = -O2 -pedantic -Wall -c $(INCLUDES) \
63
64
         -D PACKAGE=\"$(PACKAGE)\" -D LOCALEDIR=\"$(LOCALEDIR)\" \
64
65
          $(EXTRA_CFLAGS)
 
66
#endif
65
67
ifeq ($(MAKECMDGOALS),debug)
66
68
CFLAGS = -g -ansi -pedantic -Wall -c $(INCLUDES) \
67
69
         -D PACKAGE=\"$(PACKAGE)\" -D LOCALEDIR=\"$(LOCALEDIR)\" \