~ubuntu-branches/ubuntu/trusty/argyll/trusty-proposed

« back to all changes in this revision

Viewing changes to imdi/Jamfile

  • Committer: Package Import Robot
  • Author(s): Artur Rona
  • Date: 2014-02-12 00:35:39 UTC
  • mfrom: (13.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20140212003539-24tautzlitsiz61w
Tags: 1.5.1-5ubuntu1
* Merge from Debian unstable. (LP: #1275572) Remaining changes:
  - debian/control:
    + Build-depend on libtiff-dev rather than libtiff4-dev.
  - debian/control, debian/patches/06_fix_udev_rule.patch:
    + Fix udev rules to actually work; ENV{ACL_MANAGE} has
      stopped working ages ago, and with logind it's now the
      "uaccess" tag. Dropping also consolekit from Recommends.
  - debian/patches/drop-usb-db.patch:
    + Use hwdb builtin, instead of the obsolete usb-db
      in the udev rules.
* debian/patches/05_ftbfs-underlinkage.diff:
  - Dropped change, no needed anymore.
* Refresh the patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#InstallFile $(DESTDIR)$(PREFIX)/h : $(Headers) ;
19
19
#InstallLib  $(DESTDIR)$(PREFIX)/lib : $(Libraries) ;
20
20
 
21
 
HDRS = ../h ../numlib ;
22
 
LINKLIBS = ../numlib/libnum ;
 
21
HDRS = ../h ;
 
22
 
 
23
# Hack! Make cross compile of MingW64 on 32 bit host work.
 
24
# (This doesn't work - 32 bit libraries are not provided :-()
 
25
#if $(NT) && $(MINGW64) {
 
26
#       ObjectCcFlags ctest imdi_make imdi_gen cgen : -m32 ;
 
27
#       MainLinkFlags ctest imdi_make : -m32 -L $(MINGW64_LIB32) ;
 
28
#}
 
29
if $(NT) && $(MINGW64) {
 
30
        IMDI_MAKE_OPT = -f ;    # Force 64 bits
 
31
}
23
32
 
24
33
# imdi low level cgen test code
25
34
Main ctest : ctest.c cgen.c ;
27
36
# make imdi code program
28
37
Main imdi_make : imdi_make.c imdi_gen.c cgen.c ;
29
38
 
 
39
HDRS = ../h ../numlib ;
 
40
LINKLIBS = ../numlib/libnum ;
 
41
 
30
42
# GenFile source.c : program args ;     make custom file
31
43
# Generate all the kernel files
32
 
GenFileND imdi_k.h : imdi_make -d [ NormPaths $(DOT) ] ;
 
44
GenFileND imdi_k.h : imdi_make $(IMDI_MAKE_OPT) -d [ NormPaths $(DOT) ] ;
33
45
 
34
46
# imdi library
35
47
Library libimdi : imdi.c imdi_tab.c ;