Last change
on this file since 2299 was
2299,
checked in by Sam Hocevar, 14 years ago
|
- Remove #include <stdint.h> etc. from "common.h". Instead, make sure that
<cucul.h> will provide the C99 types, even if libcaca has been installed.
- Rename what's left of "common.h" to "stubs.h".
- Remove all references to erroneous <inttypes.h> from source files.
|
File size:
735 bytes
|
Line | |
---|
1 | # $Id: Makefile.am 552 2006-04-13 16:10:16Z jylam $ |
---|
2 | |
---|
3 | AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I../cucul \ |
---|
4 | -I$(top_srcdir)/caca |
---|
5 | |
---|
6 | if USE_CXX |
---|
7 | include_HEADERS = cucul++.h caca++.h |
---|
8 | lib_LTLIBRARIES = libcucul++.la libcaca++.la |
---|
9 | endif |
---|
10 | |
---|
11 | libcucul___la_SOURCES = cucul++.cpp cucul++.h |
---|
12 | libcucul___la_LDFLAGS = -no-undefined -version-number @LT_VERSION@ |
---|
13 | libcucul___la_LIBADD = ../cucul/libcucul.la |
---|
14 | |
---|
15 | libcaca___la_SOURCES = caca++.cpp caca++.h |
---|
16 | libcaca___la_LDFLAGS = -no-undefined -version-number @LT_VERSION@ |
---|
17 | libcaca___la_LIBADD = libcucul++.la ../caca/libcaca.la |
---|
18 | |
---|
19 | if USE_CXX |
---|
20 | noinst_PROGRAMS = cxxtest |
---|
21 | endif |
---|
22 | |
---|
23 | cxxtest_SOURCES = cxxtest.cpp |
---|
24 | cxxtest_LDADD = libcaca++.la libcucul++.la ../caca/libcaca.la ../cucul/libcucul.la |
---|
25 | |
---|
Note: See
TracBrowser
for help on using the repository browser.