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 39 40 41 42 43 44 45
|
#
# Makefile.in -- a part of libdecodeqr
#
# Copyright(C) 2007 NISHI Takao <zophos@koka-in.org>
# JMA (Japan Medical Association)
# NaCl (Network Applied Communication Laboratory Ltd.)
#
# This is free software with ABSOLUTELY NO WARRANTY.
# You can redistribute and/or modify it under the terms of LGPL.
#
# $Id: Makefile 20 2006-11-20 03:26:52Z zophos $
#
prefix = @prefix@
exec_prefix = @exec_prefix@
libdir = @libdir@
includedir = @includedir@
MAJOR=@MAJOR@
MINOR=@MINOR@
TEENY=@TEENY@
CXX=@CXX@
CPPFLAGS=@CPPFLAGS@ @CXXFLAGS@
AR=@AR@
LD=@LD@
LDFLAGS=@LDFLAGS@
LIBCV=@LIBCV@
LIBHIGHGUI=@LIBHIGHGUI@
INSTALL=@INSTALL@
export prefix exec_prefix libdir includedir MAJOR MINOR TEENY CXX CPPFLAGS AR ARFLAGS LD LDFLAGS LIBCV LIBHIGHGUI INSTALL
dirs:=libdecodeqr @SAMPLE@
.PHONY: $(dirs)
all: $(dirs)
$(dirs):
cd $@ && $(MAKE)
install: $(dirs)
for x in $(dirs); do cd $$x && $(MAKE) install && cd ../;done
clean:
for x in $(dirs); do cd $$x && $(MAKE) clean && cd ../;done
|