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

4.104.114.84.95
Last change on this file since 49720ad0 was 49720ad0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/01/03 at 06:11:27

2003-12-01 Ralf Corsepius <corsepiu@…>

  • Makefile.am:Restore further parts having been lost.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../aclocal
6
7include $(top_srcdir)/../../../automake/multilib.am
8include $(top_srcdir)/../../../automake/compile.am
9include $(top_srcdir)/../../../automake/lib.am
10
11AM_CPPFLAGS += -DCPU_SYNC_IO $(LIBC_DEFINES)
12
13include_rtems_scoredir = $(includedir)/rtems/score
14include_rtems_score_HEADERS = rtems/score/types.h rtems/score/cpu.h \
15    rtems/score/unix.h rtems/score/unixsize.h
16
17C_FILES = cpu.c
18OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
19
20LIB = $(ARCH)/libscorecpu.a
21
22$(LIB): $(OBJS)
23        $(make-library)
24
25all-local: $(PREINSTALL_FILES) $(LIB)
26
27EXTRA_DIST = cpu.c
28
29PREINSTALL_FILES =
30
31$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
32        @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score
33        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
34PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
35
36$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
37        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
38PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
39
40$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
41        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
42PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
43
44$(PROJECT_INCLUDE)/rtems/score/unix.h: rtems/score/unix.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
45        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/unix.h
46PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unix.h
47
48$(PROJECT_INCLUDE)/rtems/score/unixsize.h: rtems/score/unixsize.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
49        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/unixsize.h
50PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unixsize.h
51
52include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.