File: Makefile

package info (click to toggle)
biosig4c%2B%2B 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 4,116 kB
  • ctags: 6,616
  • sloc: ansic: 30,471; cpp: 7,543; makefile: 1,634; python: 65; awk: 58; sh: 4; ruby: 2
file content (23 lines) | stat: -rw-r--r-- 700 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
####### Makefile for "BioSig for C/C++" #####################
###
###  $Id: Makefile 2526 2010-08-27 21:46:28Z schloegl $
###  Copyright (C) 2010 Alois Schloegl <a.schloegl@ieee.org>
###  This file is part of the "BioSig for C/C++" repository
###  (biosig4c++) at http://biosig.sf.net/
###
##############################################################

# More information on SWIG-Java interface is available here
# http://www.swig.org/Doc1.3/Java.html

all:
	swig -c++ -java biosig.i
	g++ -fPIC -c biosig_wrap.cxx  -I/usr/lib/gcc/x86_64-linux-gnu/4.4/include/ -I/usr/lib/jvm/java-1.5.0-gcj-4.4/include
	ld -G biosig_wrap.o  -o libbiosig4java.so

clean: 
	-rm *.java
	-rm *.o 
	-rm *.cxx 
	-rm *.so