summaryrefslogtreecommitdiff
path: root/link/Jamfile
blob: 319757e6f2f455c20da67c38ea676e1623a5482a (plain)
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

# JAM style makefile for collink and friends
 
#PREF_CCFLAGS 	+= $(CCOPTFLAG) ;		# Turn optimisation on
PREF_CCFLAGS	    += $(CCDEBUGFLAG) ;		# Debugging flags
#PREF_CCFLAGS 	+= $(CCPROFFLAG) ;		# Profile flags
#PREF_LINKFLAGS	+= $(LINKPROFFLAG) ;    # Profile flags
#PREF_CCFLAGS	+= $(CCHEAPDEBUG) ;		# Heap Debugging flags
PREF_LINKFLAGS	+= $(LINKDEBUGFLAG) ;	# Link debugging flags

#Products
Executables = collink ;

#Install
InstallBin $(DESTDIR)$(PREFIX)/bin : $(Executables) ;

HDRS = ../h ../icc ../rspl ../plot ../numlib $(TIFFINC) ;
LINKLIBS = $(TIFFLIB) $(JPEGLIB) ../icc/libicc ../plot/libplot
../numlib/libnum ../numlib/libui $(LibWin) ;

# K only reprocessor
#Main icc2ko : icc2ko.c ;

# Monochrome transfer curve plotter
Main monoplot : monoplot.c ;

HDRS += ../cgats ../xicc ../spectro ../gamut ; 
LINKLIBS = ../xicc/libxicc ../xicc/libxcolorants ../gamut/libgamut.c
           ../gamut/libgammap ../rspl/librspl ../cgats/libcgats
           ../plot/libvrml $(LINKLIBS) ;

# ICC linker
Main collink : collink.c ;

# Device path L curve plotter
Main pathplot : pathplot.c ;