summaryrefslogtreecommitdiffstats
path: root/SD-VBS/benchmarks/texture_synthesis/src/matlab/MEX/Makefile-sun4
diff options
context:
space:
mode:
authorleochanj <jbakita@cs.unc.edu>2020-10-21 01:52:54 -0400
committerleochanj <jbakita@cs.unc.edu>2020-10-21 15:59:54 -0400
commit0efc775370d2ff91927d1b383a99eab78dc5538f (patch)
treea41fe470fee5adc4d944ecd6b917bc48df8c7e0f /SD-VBS/benchmarks/texture_synthesis/src/matlab/MEX/Makefile-sun4
parente2b50015cebdfba68699abd6e8575e38230f5a78 (diff)
debug libextra and remove matlab
FLUSH_CACHES
Diffstat (limited to 'SD-VBS/benchmarks/texture_synthesis/src/matlab/MEX/Makefile-sun4')
-rwxr-xr-xSD-VBS/benchmarks/texture_synthesis/src/matlab/MEX/Makefile-sun439
1 files changed, 0 insertions, 39 deletions
diff --git a/SD-VBS/benchmarks/texture_synthesis/src/matlab/MEX/Makefile-sun4 b/SD-VBS/benchmarks/texture_synthesis/src/matlab/MEX/Makefile-sun4
deleted file mode 100755
index 432b181..0000000
--- a/SD-VBS/benchmarks/texture_synthesis/src/matlab/MEX/Makefile-sun4
+++ /dev/null
@@ -1,39 +0,0 @@
1MLAB = /home/alberich/matlab4
2
3MXSFX = mex4
4MEX = ${MLAB}/bin/cmex
5
6MFLAGS =
7INC = -I ${MLAB}/extern/include
8LIB = -L ${MLAB}/extern/lib/sun4
9
10CC = gcc
11C_OPTIMIZE_SWITCH = -O2 ## For GCC
12CFLAGS = ${C_OPTIMIZE_SWITCH} ${INC} ${LIB}
13
14all: corrDn.${MXSFX} upConv.${MXSFX} pointOp.${MXSFX} \
15 histo.${MXSFX} range2.${MXSFX}
16
17clean:
18 /bin/rm *.o
19
20corrDn.${MXSFX}: corrDn.o wrap.o convolve.o edges.o
21 ${MEX} ${MFLAGS} corrDn.o wrap.o convolve.o edges.o
22
23upConv.${MXSFX}: upConv.o wrap.o convolve.o edges.o
24 ${MEX} ${MFLAGS} upConv.o wrap.o convolve.o edges.o
25
26pointOp.${MXSFX}: pointOp.o
27 ${MEX} ${MFLAGS} pointOp.o
28
29histo.${MXSFX}: histo.o
30 ${MEX} ${MFLAGS} histo.o
31
32range2.${MXSFX}: range2.o
33 ${MEX} ${MFLAGS} range2.o
34
35convolve.o wrap.o edges.o: convolve.h
36
37%.o : %.c
38 ${CC} -c ${CFLAGS} $<
39