File: Jamfile

package info (click to toggle)
argyll 1.9.2%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 38,300 kB
  • sloc: ansic: 375,893; xml: 1,551; sh: 814; makefile: 602
file content (21 lines) | stat: -rw-r--r-- 605 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

# Jamfile for namedc library
 
#PREF_CCFLAGS 	= $(CCOPTFLAG) ;		# Turn optimisation on
PREF_CCFLAGS	= $(CCDEBUGFLAG) ;		# Debugging flags
PREF_LINKFLAGS	= $(LINKDEBUGFLAG) ;

HDRS = ../h ../icc ../cgats ../numlib ../xicc ../spectro ../xml ; 

# mXML library
Library libnamedc : namedc.c ;

LINKLIBS = ./libnamedc ../xicc/libxicc ../spectro/libconv ../icc/libicc ../cgats/libcgats
           ../plot/libplot ../numlib/libui ../numlib/libnum ../xml/libmxml ;

# Individual stand alone test of namedc
MainVariant namedc : namedc.c : : STANDALONE_TEST ;

# Conversion utility
Main txt2iccnc : txt2iccnc.c ;