about summary refs log tree commit diff
path: root/converter/other/fiasco/input/Makefile
blob: 714a845638e5dca41e9c4423e495494b5ef599c9 (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
ifeq ($(SRCDIR)x,x)
  SRCDIR = $(CURDIR)/../../../..
  BUILDDIR = $(SRCDIR)
endif
FIASCOSUBDIR = converter/other/fiasco
SUBDIR = $(FIASCOSUBDIR)/input
BUILDDIR = ../../../..
VPATH=.:$(SRCDIR)/$(SUBDIR)

include $(BUILDDIR)/Makefile.config

OBJECTS =  basis.o matrices.o mc.o nd.o read.o tree.o weights.o

MERGE_OBJECTS = $(OBJECTS)

COMP_INCLUDES = -I$(SRCDIR)/$(FIASCOSUBDIR) -I$(SRCDIR)/$(FIASCOSUBDIR)/lib \
	        -I$(SRCDIR)/$(FIASCOSUBDIR)/codec

all: libfiasco_input.a

include $(SRCDIR)/common.mk

libfiasco_input.a: $(OBJECTS)
	$(AR) -rc $@ $(OBJECTS)
	$(RANLIB) $@