-
Notifications
You must be signed in to change notification settings - Fork 23
/
makefile.in
48 lines (48 loc) · 1.1 KB
/
makefile.in
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
46
47
48
#
# package & author info
#
packagename := daisy
description := daisy descriptor
major_version := 1
minor_version := 8
tiny_version := 0
# version := major_version . minor_version # depracated
author := Engin Tola
licence := see license.txt
#
# add you cpp cc files here
#
sources := daisy.cpp main.cpp \
image_io_bmp.cpp image_io_png.cpp image_io_pnm.cpp image_io_jpeg.cpp \
image_manipulation.cpp progress_bar.cpp interaction.cpp general.cpp corecv.cpp
#
# output info
#
installdir := /home/tola/usr
external_sources :=
# external_libraries := opencv
libdir := lib
srcdir := src
includedir:= include
#
# custom flags
#
# define_flags := -DWITH_OPENCV -DWITH_OPENCV_EXTRAS
# define_flags += -DUSE_OPENMP
custom_ld_flags :=
#
# optimization & parallelization ?
#
optimize := true
parallelize := false
f77 := false
sse := false
multi-threading := false
profile := false
#........................................
specialize := false
platform := native
#........................................
include $(MAKEFILE_HEAVEN)/static-variables.makefile
include $(MAKEFILE_HEAVEN)/flags.makefile
include $(MAKEFILE_HEAVEN)/rules.makefile