File: Jamfile

package info (click to toggle)
argyll 2.0.1%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 38,928 kB
  • sloc: ansic: 380,801; xml: 1,551; sh: 655; makefile: 604
file content (39 lines) | stat: -rwxr-xr-x 1,071 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
27
28
29
30
31
32
33
34
35
36
37
38
39

# Jamfile for the numlib and other general utilities

# Optization state and configuration. Overridden by parent-Jamfiles

PREF_CCFLAGS 	= $(CCOPTFLAG) ;		# Turn optimisation on
#PREF_CCFLAGS	= $(CCDEBUGFLAG) ;		# Debugging flags
PREF_LINKFLAGS	= $(LINKDEBUGFLAG) ;
#PREF_CCFLAGS 	= $(CCPROFFLAG) ;		# Profile flags
#PREF_LINKFLAGS	= $(LINKPROFFLAG) ;    # Profile flags

# Products
Libraries = libnum libui ;
Headers = numlib.h libui.h ;

#Install
#InstallFile $(DESTDIR)$(PREFIX)/h : $(Headers) ;
#InstallLib  $(DESTDIR)$(PREFIX)/lib : $(Libraries) ;

HDRS = ../h ;

# Numeric library
Library libnum.lib : numsup.c dnsq.c powell.c dhsx.c varmet.c ludecomp.c svd.c zbrent.c rand.c sobol.c aatree.c quadprog.c gnewt.c roots.c ;

# Link all utilities with libnum
LINKLIBS = libnum ;

# All test programs are made from a single source file
MainsFromSources dnsqtest.c tpowell.c tconjgrad.c tdhsx.c LUtest.c svdtest.c zbrenttest.c soboltest.c qptest.c ;

# Compile .c as .m
if $(OS) = MACOSX {
	ObjectCcFlags ui : -ObjC ;
}

# UI setup library
Library libui.lib : ui.c ;