Build: fix Makefile.am files to separate source and build directories

This is step forward working VPATH builds which cleanly separate sources
and build artifacts. It makes the system cleaner and easier to
understand.

Python and web UI likely require more work to make VPATH builds working.

https://fedorahosted.org/freeipa/ticket/6418

Reviewed-By: Martin Basti <mbasti@redhat.com>
Reviewed-By: Christian Heimes <cheimes@redhat.com>
This commit is contained in:
Petr Spacek
2016-11-09 13:08:32 +01:00
committed by Martin Babinsky
parent 820fd4c7ce
commit 24feae47f2
23 changed files with 38 additions and 66 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
SUBDIRS = asn1c
AM_CPPFLAGS = -I../util -Iasn1c
AM_CPPFLAGS = -I$(top_srcdir)/util -I$(srcdir)/asn1c
noinst_LTLIBRARIES=libipaasn1.la
noinst_HEADERS=ipa_asn1.h
+1 -1
View File
@@ -33,7 +33,7 @@ libasn1c_la_SOURCES = \
TypeValuePair.c
AM_CPPFLAGS = -I../../util
AM_CPPFLAGS = -I$(top_srcdir)/util
noinst_LTLIBRARIES=libasn1c.la