mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 15:40:10 +01:00
* configure.in: Strip out TARGET_DISTRO and SYSTEM_BACKEND_FILE variables. Switch to Automake conditionals. * src/Makefile.am (noinst_LTLIBRARIES): Add libnmbackend.la. (libnmbackend_la_SOURCES): Use Automake conditionals to add distro-specific files. * initscript/Makefile.am (SUBDIRS): Update to use conditionals. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@309 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
27 lines
463 B
Makefile
27 lines
463 B
Makefile
SUBDIRS =
|
|
if TARGET_REDHAT
|
|
SUBDIRS += RedHat
|
|
endif
|
|
if TARGET_GENTOO
|
|
SUBDIRS += Gentoo
|
|
endif
|
|
if TARGET_DEBIAN
|
|
SUBDIRS += Debian
|
|
endif
|
|
if TARGET_SLACKWARE
|
|
SUBDIRS += Slackware
|
|
endif
|
|
|
|
INCLUDES = \
|
|
$(NM_CFLAGS) \
|
|
-Wall \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DDATADIR=\"$(datadir)\"
|
|
|
|
bin_PROGRAMS = NMLaunchHelper
|
|
|
|
NMLaunchHelper_SOURCES = NMLaunchHelper.c
|
|
|
|
NMLaunchHelper_LDADD = $(NM_LIBS)
|