File: Jamfile

package info (click to toggle)
argyll 3.3.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 33,944 kB
  • sloc: ansic: 402,917; javascript: 36,570; xml: 1,551; sh: 520; makefile: 428
file content (28 lines) | stat: -rwxr-xr-x 921 bytes parent folder | download | duplicates (3)
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
# JAM style makefile for tweak tools
 
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 = refine ;

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

HDRS = ../h ../icc ../cgats ../xicc ../spectro ../gamut
       ../rspl ../numlib ../plot ;
LINKLIBS = ../icc/libicc ../xicc/libxicc
           ../spectro/libinsttypes ../gamut/libgamut
           ../gamut/libgammap ../rspl/librspl 
           ../cgats/libcgats ../spectro/libconv ../numlib/libnum
           ../plot/libplot ../plot/libvrml ../numlib/libui $(LibWin) ;

LINKFLAGS += $(GUILINKFLAGS) ;

# Profile refiner
Main refine : refine.c ;