mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-27 15:00:16 +00:00
23 lines
585 B
Makefile
23 lines
585 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
include $(top_srcdir)/automake/compile.am
|
|
|
|
include_rtemsdir = $(includedir)/rtems
|
|
include_rtems_HEADERS = rtems/asm.h
|
|
|
|
include_rtems_mipsdir = $(includedir)/rtems/mips
|
|
include_rtems_mips_HEADERS = rtems/mips/idtcpu.h rtems/mips/iregdef.h
|
|
|
|
include_rtems_scoredir = $(includedir)/rtems/score
|
|
include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/mips.h \
|
|
rtems/score/types.h
|
|
|
|
noinst_LIBRARIES = libscorecpu.a
|
|
libscorecpu_a_SOURCES = cpu.c cpu_asm.S
|
|
libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
include $(srcdir)/preinstall.am
|
|
include $(top_srcdir)/automake/local.am
|