[go: up one dir, main page]

File: Makefile.in

package info (click to toggle)
libdecodeqr 0.9.3-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 704 kB
  • ctags: 528
  • sloc: cpp: 3,416; sh: 279; makefile: 202
file content (45 lines) | stat: -rw-r--r-- 1,019 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
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