File: makefile.bsd4

package info (click to toggle)
smapi 2.4.0%2Brc2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge
  • size: 1,016 kB
  • ctags: 1,831
  • sloc: ansic: 11,304; pascal: 394; makefile: 137; asm: 125
file content (30 lines) | stat: -rw-r--r-- 598 bytes parent folder | download
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
27
28
29
30
# $Id: makefile.bsd4,v 1.11 2002/12/06 14:55:48 stas_degteff Exp $
# Legacy makefile for building on FreeBSD using 'make' program.
# Tested on FreeBSD 4.1-RELEASE & 4.4-RELEASE
#
# No support for the Husky build environment (../huskymak.cfg)

# Uncoment this if we are to create .a only (don't create .so)
#NOPIC=	1

NOMAN=	1
prefix= 	/usr/local
LIBDIR= 	$(prefix)/lib
CFLAGS= 	-Wall -DUNIX -O3

LIB=		smapi
SHLIB_MAJOR=	2
SHLIB_MINOR=	2.3

OBJ=	.o

# FreeBSD/i386 addition
#
.if ${MACHINE_ARCH} == "i386"
   CFLAGS+= -fstrength-reduce -m486
.endif

.include <makefile.inc>

.include <bsd.lib.mk>