File: config.defs

package info (click to toggle)
vrwave 0.9-4
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 5,032 kB
  • ctags: 7,153
  • sloc: java: 15,050; ansic: 8,219; sh: 458; makefile: 181
file content (37 lines) | stat: -rw-r--r-- 753 bytes parent folder | download | duplicates (3)
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
31
32
33
34
35
36
37
# common configuration definitions
# included by $(CPU)/makefile
# any settings made here can be overriden in config.$CPU
#
# created: mpichler, 19960812
# changed: mpichler, 19961008
#
# $Id: config.defs,v 1.4 1997/09/19 15:41:26 mpichler Exp $

# Java compiler
JAVAC=javac

# Java header generator
JAVAH=javah

# C-compiler (Ansi C),
# producing position independent code (to link shared object)
CC_PIC=gcc -O2 -fpic -Wall

# C++ compiler (not needed)
# CPP_PIC=g++ -fpic

# linker command to produce shared library (.so file)
LDSO=gcc -shared
# LDSO=gcc -symbolic

# file extension for shared libraries
SOEXT=so

# X11 libraries
XLIBS=$(XLIBDIR) -lXmu -lX11 -lm

# anything your LDSO call needs as trailing arguments
LDSOLIBS=

# rm command
RM=rm -f