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

4.104.114.84.95
Last change on this file since 411b065 was 411b065, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/06/04 at 02:13:21

2004-04-06 Ralf Corsepius <ralf_corsepius@…>

  • rtems/score/cpu.h: Remove unixsize.h.
  • configure.ac: Remove (Merged into$(top_srcdir)/configure.ac).
  • Makefile.am: Remove unixsize.h. Don't include multilib.am. Reflect merging configure.ac into $(top_srcdir)/configure.ac.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/compile.am
6
7AM_CPPFLAGS += -DCPU_SYNC_IO $(LIBC_DEFINES)
8
9include_rtems_scoredir = $(includedir)/rtems/score
10include_rtems_score_HEADERS = rtems/score/types.h rtems/score/cpu.h \
11    rtems/score/unix.h
12
13EXTRA_LIBRARIES = libscorecpu.a
14CLEANFILES = libscorecpu.a
15libscorecpu_a_SOURCES = cpu.c
16libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
17
18EXTRA_LIBRARIES += libscorecpu_g.a
19CLEANFILES += libscorecpu_g.a
20libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES)
21libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
22
23all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a
24
25PREINSTALL_DIRS =
26PREINSTALL_FILES =
27
28$(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
29        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems/score
30        @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
31PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
32
33$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
34        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
35PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
36
37$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
38        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
39PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
40
41$(PROJECT_INCLUDE)/rtems/score/unix.h: rtems/score/unix.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
42        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/unix.h
43PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unix.h
44
45CLEANFILES += $(PREINSTALL_FILES)
46DISTCLEANFILES = $(PREINSTALL_DIRS)
47
48include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.