summaryrefslogtreecommitdiff
path: root/libl4/Makefile.am
blob: 9bebc64c0aa7fb750f3ea902c7ab4c6c0e8e7954 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Makefile.am - Makefile template for libl4.
# Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
# Written by Marcus Brinkmann.
#
# This file is part of the GNU Hurd.
# 
# The GNU Hurd is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# 
# The GNU Hurd is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA

if ARCH_IA32
  ARCH_SUBDIR = ia32
endif
if ARCH_POWERPC
  ARCH_SUBDIR = powerpc
endif
if L4_ABI_X2
  L4_ABI_SUBDIR = x2
endif
SUBDIRS =  $(ARCH_SUBDIR) $(L4_ABI_SUBDIR) tests

# Header files that must be provided by all interfaces.
common_headers := ipc.h kip.h message.h misc.h schedule.h space.h	\
	syscall.h thread.h types.h sigma0.h
# Interface-specific header files.
gnu_headers := $(common_headers) math.h pagefault.h thread-start.h
compat_headers := $(common_headers)

# Main libl4 header files.
l4_headers = features.h globals.h init.h ipc.h kip.h math.h message.h	\
	misc.h pagefault.h schedule.h space.h stubs-init.h stubs.h	\
	syscall.h thread.h thread-start.h types.h vregs.h sigma0.h	\
	arch.h

include_HEADERS = l4.h
nobase_include_HEADERS = $(addprefix l4/, $(l4_headers))	\
	$(addprefix l4/gnu/, $(gnu_headers))			\
	$(addprefix l4/compat/, $(compat_headers))