|
Revision 218, 468 bytes
(checked in by zany, 2 years ago)
|
|
replacing deprecated automake vars
|
| Line | |
|---|
| 1 | lib_LTLIBRARIES = libmulticobex.la |
|---|
| 2 | |
|---|
| 3 | AM_CFLAGS = @OPENOBEX_CFLAGS@ \ |
|---|
| 4 | -I$(top_srcdir) \ |
|---|
| 5 | -I$(top_srcdir)/includes |
|---|
| 6 | |
|---|
| 7 | multicobexincludedir = $(includedir)/multicobex |
|---|
| 8 | |
|---|
| 9 | libmulticobex_la_SOURCES = multi_cobex.c multi_cobex.h \ |
|---|
| 10 | multi_cobex_private.h |
|---|
| 11 | |
|---|
| 12 | multicobexinclude_HEADERS = multi_cobex.h |
|---|
| 13 | |
|---|
| 14 | libmulticobex_la_LDFLAGS = -no-undefined \ |
|---|
| 15 | -version-info $(MULTICOBEX_VERSION) |
|---|
| 16 | |
|---|
| 17 | libmulticobex_la_LIBADD = @OPENOBEX_LIBS@ \ |
|---|
| 18 | ../bfb/libbfb.la \ |
|---|
| 19 | @EXTRA_LIBS@ |
|---|