annotate src/libSAD/Makefile @ 4757:bb0638143fc8

move libSAD's DEBUG_MSG out of global scope, as it breaks timidity and possible something else
author Andrew O. Shadoura <bugzilla@tut.by>
date Thu, 07 Aug 2008 12:29:24 +0300
parents 4eb812a53716
children d0218338996d
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 \
4757
bb0638143fc8 move libSAD's DEBUG_MSG out of global scope, as it breaks timidity and possible something else
Andrew O. Shadoura <bugzilla@tut.by>
parents: 4753
diff changeset
11 dither.h \
bb0638143fc8 move libSAD's DEBUG_MSG out of global scope, as it breaks timidity and possible something else
Andrew O. Shadoura <bugzilla@tut.by>
parents: 4753
diff changeset
12 debug.h
4260
032207ff2a87 install libSAD headers
mf0102 <0102@gmx.at>
parents: 4251
diff changeset
13
4261
80cdcabbc373 fixed order
mf0102 <0102@gmx.at>
parents: 4260
diff changeset
14 include ../../buildsys.mk
80cdcabbc373 fixed order
mf0102 <0102@gmx.at>
parents: 4260
diff changeset
15 include ../../extra.mk
80cdcabbc373 fixed order
mf0102 <0102@gmx.at>
parents: 4260
diff changeset
16
80cdcabbc373 fixed order
mf0102 <0102@gmx.at>
parents: 4260
diff changeset
17 PACKAGE = libSAD
4260
032207ff2a87 install libSAD headers
mf0102 <0102@gmx.at>
parents: 4251
diff changeset
18 CPPFLAGS += ${SIMD_CFLAGS} -I../..
4753
4eb812a53716 fix libSAD linkage
Andrew O. Shadoura <bugzilla@tut.by>
parents: 4750
diff changeset
19 CFLAGS += ${LIB_CFLAGS}