File: Makefile.linux

package info (click to toggle)
norm 1.5.8%2Bdfsg2-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 11,256 kB
  • sloc: cpp: 114,141; python: 27,185; xml: 7,165; tcl: 5,460; makefile: 3,463; java: 1,749; ansic: 607; sh: 181; csh: 8
file content (17 lines) | stat: -rw-r--r-- 398 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Linux NORM-JNI Makefile definitions
#

# System specific additional libraries, include paths, etc
SYSTEM_INCLUDES = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux
SYSTEM_LIBS = 
SYSTEM_SRC =

SYSTEM = linux

export CC = g++
export SYSTEM_CFLAGS = -fPIC -Wall -Wcast-align -D_FILE_OFFSET_BITS=64
export SYSTEM_SOFLAGS = -shared -Wl,--no-undefined
SYSTEM_SOEXT = so

include Makefile.common