File: Makefile.incl

package info (click to toggle)
libarr 0.1-49
  • links: PTS
  • area: main
  • in suites: woody
  • size: 376 kB
  • ctags: 400
  • sloc: ansic: 2,106; makefile: 140; sh: 13
file content (26 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# $Id: Makefile.incl,v 1.4 2001/07/16 23:01:18 doviende Exp $
#
# This is to be included by all Makefiles that are to be processed with make(1)
# in this tree.  This is the chief configuration file.
#

#
# Set these variables according to your system configuration.  (Alternatively,
# you could also configure /etc/make.conf properly; these are standard
# variables.)
CC	?= gcc					# ANSI-compatible C compiler
CFLAGS	?= -O2 -pipe -g3
CFLAGS	+= -fomit-frame-pointer -fexpensive-optimizations -I$(TREE)/include
CFLAGS	+= -Wall
LDFLAGS	?= -rdynamic
SHARED   = -shared

AR	?= ar
ARFLAGS	 = cr

RM	= `which rm` -f
MV	= `which mv` -f

SED	= `which sed`