source: MondoRescue/branches/2.05/mondo/mondo/common/Makefile.am@ 182

Last change on this file since 182 was 182, checked in by bcornec, 18 years ago

disable x11 build by default
g_mondo_home is now computed at compile time with a define

  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1##
2## Process this file with Automake to generate `Makefile.in'
3##
4
5AM_CPPFLAGS = -DMONDO_LIB=\"$(pkglibdir)\"
6## Headers
7
8noinst_HEADERS = libmondo-archive.h libmondo-devices.h \
9 libmondo-filelist.h libmondo-files.h libmondo-fork.h \
10 libmondo-gui.h libmondo-mountlist.h libmondo-raid.h \
11 libmondo-stream.h libmondo-string.h libmondo-tools.h \
12 libmondo-verify.h libmondo-fifo.h \
13 libmondo-archive-EXT.h my-stuff.h mondostructures.h \
14 libmondo-devices-EXT.h libmondo-fifo-EXT.h libmondo-filelist-EXT.h \
15 libmondo-files-EXT.h libmondo-fork-EXT.h libmondo-gui-EXT.h \
16 libmondo-mountlist-EXT.h libmondo-raid-EXT.h libmondo-stream-EXT.h \
17 libmondo-string-EXT.h libmondo-tools-EXT.h libmondo-verify-EXT.h \
18 X-specific.h newt-specific.h
19
20## Libraries
21if XWIN
22 XMONDOLIB = libXmondo.la
23endif XWIN
24lib_LTLIBRARIES = libmondo.la libmondo-newt.la $(XMONDOLIB)
25
26## libmondo
27libmondo_la_SOURCES = libmondo-archive.c libmondo-devices.c libmondo-fifo.c \
28 libmondo-filelist.c libmondo-files.c libmondo-fork.c \
29 libmondo-mountlist.c libmondo-raid.c \
30 libmondo-stream.c libmondo-string.c libmondo-tools.c \
31 libmondo-verify.c
32libmondo_la_LDFLAGS = -version-info 2:3:0 -shrext .so
33libmondo_la_LIBADD = @LIBS@
34
35## libmondo-newt
36libmondo_newt_la_SOURCES = newt-specific.c
37libmondo_newt_la_LDFLAGS = -version-info 1:0:0 -shrext .so
38libmondo_newt_la_LIBADD = -lnewt
39
40## libXmondo
41libXmondo_la_SOURCES = libmondo-archive.c libmondo-devices.c libmondo-fifo.c \
42 libmondo-filelist.c libmondo-files.c libmondo-fork.c \
43 X-specific.cpp libmondo-mountlist.c libmondo-raid.c \
44 libmondo-stream.c libmondo-string.c libmondo-tools.c \
45 libmondo-verify.c
46libXmondo_la_LDFLAGS = -version-info 1:0:0 -shrext .so
47libXmondo_la_LIBADD = -L/usr/X11R6/lib -L/usr/local/lib @QT_LIBRARY@ @LIBS@ @my_qt_libraries@ @my_kde_libraries@
48libXmondo_la_CFLAGS = -D_XWIN
49libXmondo_la_CXXFLAGS= -D_XWIN @my_qt_includes@ @my_kde_includes@
Note: See TracBrowser for help on using the repository browser.