annotate src/libSAD/Makefile @ 4750:74134c731db6

make libSAD shared library, so plugins can use it
author Andrew O. Shadoura <bugzilla@tut.by>
date Wed, 06 Aug 2008 22:30:35 +0300
parents 80cdcabbc373
children 4eb812a53716
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4750
74134c731db6 make libSAD shared library, so plugins can use it
Andrew O. Shadoura <bugzilla@tut.by>
parents: 4261
diff changeset
1 LIB = ${LIB_PREFIX}SAD${LIB_SUFFIX}
74134c731db6 make libSAD shared library, so plugins can use it
Andrew O. Shadoura <bugzilla@tut.by>
parents: 4261
diff changeset
2 LIB_MAJOR = 1
74134c731db6 make libSAD shared library, so plugins can use it
Andrew O. Shadoura <bugzilla@tut.by>
parents: 4261
diff changeset
3 LIB_MINOR = 0
74134c731db6 make libSAD shared library, so plugins can use it
Andrew O. Shadoura <bugzilla@tut.by>
parents: 4261
diff changeset
4
4232
704607c1f858 1st attempt to integrate dithering and RG engine
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
5 SRCS = dither.c \
704607c1f858 1st attempt to integrate dithering and RG engine
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
6 dither_ops.c \
704607c1f858 1st attempt to integrate dithering and RG engine
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
7 noicegen.c
704607c1f858 1st attempt to integrate dithering and RG engine
Eugene Zagidullin <e.asphyx@gmail.com>
parents:
diff changeset
8
4260
032207ff2a87 install libSAD headers
mf0102 <0102@gmx.at>
parents: 4251
diff changeset
9 INCLUDES = libSAD.h \
032207ff2a87 install libSAD headers
mf0102 <0102@gmx.at>
parents: 4251
diff changeset
10 common.h \
032207ff2a87 install libSAD headers
mf0102 <0102@gmx.at>
parents: 4251
diff changeset
11 dither.h
032207ff2a87 install libSAD headers
mf0102 <0102@gmx.at>
parents: 4251
diff changeset
12
4261
80cdcabbc373 fixed order
mf0102 <0102@gmx.at>
parents: 4260
diff changeset
13 include ../../buildsys.mk
80cdcabbc373 fixed order
mf0102 <0102@gmx.at>
parents: 4260
diff changeset
14 include ../../extra.mk
80cdcabbc373 fixed order
mf0102 <0102@gmx.at>
parents: 4260
diff changeset
15
80cdcabbc373 fixed order
mf0102 <0102@gmx.at>
parents: 4260
diff changeset
16 PACKAGE = libSAD
4260
032207ff2a87 install libSAD headers
mf0102 <0102@gmx.at>
parents: 4251
diff changeset
17 CPPFLAGS += ${SIMD_CFLAGS} -I../..