source: rtems/cpukit/score/cpu/unix/Makefile.am @ fa6b0f5

4.104.114.84.95
Last change on this file since fa6b0f5 was 1f24914a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/04/05 at 05:25:15

2005-02-04 Ralf Corsepius <ralf.corsepius@…>

PR 754/rtems

  • rtems/asm.h: New (relocated from .).
  • asm.h: Remove (moved to rtems/asm.h).
  • Makefile.am: Reflect changes above.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/compile.am
6
7AM_CPPFLAGS += -DCPU_SYNC_IO
8
9include_rtemsdir = $(includedir)/rtems
10include_rtems_HEADERS = rtems/asm.h
11
12include_rtems_scoredir = $(includedir)/rtems/score
13include_rtems_score_HEADERS = rtems/score/types.h rtems/score/cpu.h \
14    rtems/score/unix.h
15
16noinst_LIBRARIES = libscorecpu.a
17libscorecpu_a_SOURCES = cpu.c
18libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
19
20all-local: $(PREINSTALL_FILES)
21
22PREINSTALL_DIRS =
23PREINSTALL_FILES =
24
25$(PROJECT_INCLUDE)/rtems/$(dirstamp):
26        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
27        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
28PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
29
30$(PROJECT_INCLUDE)/rtems/asm.h: rtems/asm.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
31        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/asm.h
32PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/asm.h
33
34$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
35        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
36        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
37PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
38
39$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
40        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
41PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
42
43$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
44        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
45PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
46
47$(PROJECT_INCLUDE)/rtems/score/unix.h: rtems/score/unix.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
48        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/unix.h
49PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unix.h
50
51CLEANFILES = $(PREINSTALL_FILES)
52DISTCLEANFILES = $(PREINSTALL_DIRS)
53
54include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.