summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/unix/Makefile.am
blob: 1f3916fd8d2b1b90da6fa28429b549aad7c4666e (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
44
45
46
47
48
49
50
##
## $Id$
##

ACLOCAL_AMFLAGS = -I ../../../../../../aclocal

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

AM_CPPFLAGS += -DCPU_SYNC_IO $(LIBC_DEFINES)

$(PROJECT_INCLUDE)/%.h: %.h
	$(INSTALL_DATA) $< $@

$(PROJECT_INCLUDE):
	$(mkinstalldirs) $@

$(PROJECT_INCLUDE)/rtems:
	$(mkinstalldirs) $@

$(PROJECT_INCLUDE)/rtems/score:
	$(mkinstalldirs) $@

include_rtems_scoredir = $(includedir)/rtems/score
include_rtems_score_HEADERS = \
    rtems/score/types.h \
    rtems/score/cpu.h \
    rtems/score/unix.h \
    rtems/score/unixsize.h
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \
    $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)

C_FILES = cpu.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)

REL = $(ARCH)/rtems-cpu.rel

rtems_cpu_rel_OBJECTS = $(C_O_FILES)

$(REL): $(rtems_cpu_rel_OBJECTS)
	$(make-rel)

all-local: $(ARCH) $(rtems_cpu_rel_OBJECTS) $(REL)

.PRECIOUS: $(REL)

EXTRA_DIST = cpu.c

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