-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
54 lines (44 loc) · 1.72 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
#----------------------------------------------------------------------------
#
# "Point Spread Function Estimation from a Random Target"
#
# Copyright 2010-2011 mauricio delbracio ([email protected])
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# ---------------------------------------------------------------------------
# Makefile
# Non-parametric sub-pixel local point spread function estimation
# Author: Mauricio Delbracio <[email protected]>
# lapack and fftw libs/includes files should
# be in the following directories:
LIB_DIR = /opt/local/lib
LIB_INCLUDE_DIR = /opt/local/include
CSRC = detect_pattern.c psf_estim.c psf_estim_main.c thin_plates.c lsd.c \
image.c nnls.c io_pgm.c
OBJ = $(CSRC:.c=.o)
BIN = psf_estim
CFLAGS = -ansi -pedantic $(COPT)
default: $(BIN)
%.o : %.c
$(CC) $(CFLAGS) -I$(LIB_INCLUDE_DIR) -c -o $@ $<
$(BIN) : io_pgm.o image.o lsd.o thin_plates.o detect_pattern.o nnls.o \
psf_estim.o psf_estim_main.o
$(CC) $(CFLAGS) -L$(LIB_DIR) -o $@ $^ -lm -lblas -llapack -lfftw3f
clean :
$(RM) $(OBJ)
doc :
doxygen doxygen.config
tar:
tar -zcvf ../psfestim_1.3.tar.gz --exclude=.* -C ../ psfestim_1.3/