-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmakefile
55 lines (46 loc) · 1.26 KB
/
makefile
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
49
50
51
52
53
54
55
# Copyright 2009-2011 Nicolas Limare <nicolas.limare@cmla.ens-cachan.fr>
#
# Copying and distribution of this file, with or without
# modification, are permitted in any medium without royalty provided
# the copyright notice and this notice are preserved. This file is
# offered as-is, without any warranty.
# source code
SRC = io_png.c norm.c retinex_pde_lib.c retinex_pde.c
# object files (partial compilation)
OBJ = $(SRC:.c=.o)
# binary executable programs
BIN = retinex_pde
# C compiler optimization options
COPT = -O2
# complete C compiler options
CFLAGS = $(COPT)
# preprocessor options
CPPFLAGS = -I. -DNDEBUG
# linker options
LDFLAGS =
# libraries
LDLIBS = -lpng -lfftw3f -lm
# uncomment this part to use the multi-threaded DCT
#CPPFLAGS += -DFFTW_NTHREADS=8
#LDFLAGS += -lfftw3f_threads -lpthread
# default target: the binary executable programs
default: $(BIN)
# dependencies
-include makefile.dep
# partial C compilation xxx.c -> xxx.o
%.o : %.c
$(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@ $<
# final link
retinex_pde : $(OBJ)
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
# cleanup
.PHONY : clean distclean
clean :
$(RM) $(OBJ)
distclean : clean
$(RM) $(BIN)
$(RM) -r srcdoc
################################################
# dev tasks
PROJECT = retinex_pde
-include makefile.dev