summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/mpc8260/exceptions/Makefile.am
blob: 119db740cab288a5e8357007b116ca0594885ddb (plain) (blame)
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
##
## $Id$
##

PGM = $(ARCH)/exceptions.rel

C_FILES = raw_exception.c

S_FILES = asm_utils.S

include_libcpudir = $(includedir)/libcpu
include_libcpu_HEADERS = raw_exception.h

exceptions_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) \
    $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))

include $(top_srcdir)/../../../automake/compile.am
include $(top_srcdir)/../../../automake/lib.am

#
# (OPTIONAL) Add local stuff here using +=
#

$(PGM): $(exceptions_rel_OBJECTS)
	$(make-rel)

all-local: $(PREINSTALL_FILES) $(exceptions_rel_OBJECTS) $(PGM)

.PRECIOUS: $(PGM)

EXTRA_DIST = asm_utils.S raw_exception.c raw_exception.h

PREINSTALL_FILES =

$(PROJECT_INCLUDE)/libcpu/$(dirstamp):
	@$(mkdir_p) $(PROJECT_INCLUDE)/libcpu
	@: > $(PROJECT_INCLUDE)/libcpu/$(dirstamp)

$(PROJECT_INCLUDE)/libcpu/raw_exception.h: raw_exception.h $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
	$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/libcpu/raw_exception.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/raw_exception.h

include $(top_srcdir)/../../../automake/local.am