about summary refs log tree commit diff
path: root/converter/other/cameratopam/Makefile
blob: 089f834b206effc243e20714673a346a95df4441 (plain) (blame)
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
ifeq ($(SRCDIR)x,x)
  SRCDIR = $(CURDIR)/../../..
  BUILDDIR = $(SRCDIR)
endif
SUBDIR = converter/other/cameratopam
VPATH=.:$(SRCDIR)/$(SUBDIR)

EXTERN_INCLUDES =
ifneq ($(JPEGLIB),NONE)
  ifneq ($(JPEGHDR_DIR)x,x)
    EXTERN_INCLUDES += -I$(JPEGHDR_DIR)
    CFLAGS += -DHAVE_JPEG
  endif
endif

include $(BUILDDIR)/Makefile.config


.PHONY: all
all: cameratopam

OBJECTS = util.o identify.o cameratopam.o camera.o foveon.o decode.o \
	canon.o ljpeg.o dng.o

MERGE_OBJECTS =

BINARIES = cameratopam
MERGEBINARIES = 
SCRIPTS = 

include $(SRCDIR)/common.mk

cameratopam: $(OBJECTS) $(NETPBMLIB) $(LIBOPT)
	$(LD) -o $@ $(LDFLAGS) \
          $(OBJECTS) $(shell $(LIBOPT) $(NETPBMLIB) $(LIBOPTR)) \
	  $(MATHLIB) $(LDLIBS) \
	  $(RPATH) $(LADD)