mirror of https://github.com/BOINC/boinc.git
Small fixes to make 'make distcheck' work
git-svn-id: svn+ssh://cvs.lpds.sztaki.hu/var/lib/svn/szdg/dcapi/trunk@816 a7169a2c-3604-0410-bc95-c702d8d87f7a
This commit is contained in:
parent
8db80dd38a
commit
e0f18d7cbc
|
@ -3,6 +3,8 @@ AUTOMAKE_OPTIONS = foreign 1.7
|
|||
|
||||
SUBDIRS = include common doc
|
||||
|
||||
EXTRA_DIST = _autosetup.sh
|
||||
|
||||
if WITH_BOINC
|
||||
SUBDIRS += boinc
|
||||
endif
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
lib_LTLIBRARIES =
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/common $(GLIB_CFLAGS)
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include $(GLIB_CFLAGS)
|
||||
|
||||
if BUILD_MASTER
|
||||
lib_LTLIBRARIES += libdc-boinc.la
|
||||
|
|
|
@ -1,13 +1,15 @@
|
|||
noinst_LTLIBRARIES = libdc-common-master.la libdc-common-client.la
|
||||
|
||||
libdc_common_master_la_CPPFLAGS = $(GLIB_CFLAGS) -DMASTER
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include
|
||||
|
||||
libdc_common_master_la_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS) -DMASTER
|
||||
libdc_common_master_la_SOURCES = \
|
||||
cfg-master.c \
|
||||
logger.c \
|
||||
util.c
|
||||
libdc_common_master_la_LIBADD = $(GLIB_LIBS)
|
||||
|
||||
libdc_common_client_la_CPPFLAGS = -DCLIENT
|
||||
libdc_common_client_la_CPPFLAGS = $(AM_CPPFLAGS) -DCLIENT
|
||||
libdc_common_client_la_SOURCES = \
|
||||
cfg-client.c \
|
||||
logger.c \
|
||||
|
|
|
@ -11,7 +11,7 @@ endif
|
|||
pkgconfigdir = ${libdir}/pkgconfig
|
||||
pkgconfig_DATA = dcapi-condor-client.pc dcapi-condor-master.pc
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/common $(GLIB_CFLAGS) $(CONDOR_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include $(GLIB_CFLAGS) $(CONDOR_CPPFLAGS)
|
||||
AM_LDFLAGS = $(GLIB_LIBS) $(CONDOR_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = condor_common.h \
|
||||
|
|
|
@ -11,7 +11,9 @@ endif
|
|||
pkgconfigdir = ${libdir}/pkgconfig
|
||||
pkgconfig_DATA = dcapi-local-client.pc dcapi-local-master.pc
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/common $(GLIB_CFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include $(GLIB_CFLAGS)
|
||||
|
||||
noinst_HEADERS = common_defs.h dc_local.h
|
||||
|
||||
libdc_local_la_SOURCES = \
|
||||
dc.c \
|
||||
|
|
Loading…
Reference in New Issue