source: rtems/cpukit/score/src/Makefile.am @ caacc739

4.104.114.84.95
Last change on this file since caacc739 was 8ef3818, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 19:57:02

Patch from John Cotton <john.cotton@…>, Charles-Antoine Gauthier
<charles.gauthier@…>, and Darlene A. Stewart
<Darlene.Stewart@…> to add support for a number of very
significant things:

+ BSPs for many variations on the Motorola MBX8xx board series
+ Cache Manager including initial support for m68040

and PowerPC

+ Rework of mpc8xx libcpu code so all mpc8xx CPUs now use

same code base.

+ Rework of eth_comm BSP to utiltize above.

John reports this works on the 821 and 860

  • Property mode set to 100644
File size: 2.8 KB
Line 
1##
2##  $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
8include $(top_srcdir)/../../../automake/lib.am
9
10# We only build multiprocessing related files if HAS_MP was defined
11MP_C_FILES = mpci.c objectmp.c threadmp.c
12
13CORE_MESSAGE_QUEUE_C_FILES = coremsg.c coremsgbroadcast.c coremsgclose.c \
14    coremsgflush.c coremsgflushwait.c coremsginsert.c coremsgflushsupp.c \
15    coremsgseize.c coremsgsubmit.c
16
17CORE_MUTEX_C_FILES = coremutex.c coremutexflush.c coremutexseize.c \
18    coremutexsurrender.c
19
20CORE_SEMAPHORE_C_FILES = coresem.c coresemflush.c coresemseize.c \
21    coresemsurrender.c
22
23HEAP_C_FILES = heap.c heapallocate.c heapextend.c heapfree.c \
24    heapsizeofuserarea.c heapwalk.c
25
26OBJECT_C_FILES = object.c objectallocate.c objectallocatebyindex.c \
27    objectclearname.c objectcomparenameraw.c objectcomparenamestring.c \
28    objectcopynameraw.c objectcopynamestring.c objectextendinformation.c \
29    objectfree.c objectget.c objectgetbyindex.c objectgetnext.c \
30    objectinitializeinformation.c objectlocaliterate.c objectnametoid.c \
31    objectshrinkinformation.c
32
33THREAD_C_FILES = thread.c threadchangepriority.c threadclearstate.c \
34    threadclose.c threadcreateidle.c threaddelayended.c threaddispatch.c \
35    threadevaluatemode.c threadget.c threadhandler.c threadidlebody.c \
36    threadinitialize.c threadloadenv.c threadlocaliterate.c threadready.c \
37    threadresettimeslice.c threadreset.c threadrestart.c threadresume.c \
38    threadrotatequeue.c threadsetpriority.c threadsetstate.c \
39    threadsettransient.c threadstackallocate.c threadstackfree.c \
40    threadstart.c threadstartmultitasking.c threadsuspend.c \
41    threadtickletimeslice.c threadyieldprocessor.c
42
43THREADQ_C_FILES = threadq.c threadqdequeue.c threadqdequeuefifo.c \
44    threadqdequeuepriority.c threadqenqueue.c threadqenqueuefifo.c \
45    threadqenqueuepriority.c threadqextract.c threadqextractfifo.c \
46    threadqextractpriority.c threadqextractwithproxy.c threadqfirst.c \
47    threadqfirstfifo.c threadqfirstpriority.c threadqflush.c \
48    threadqtimeout.c
49
50TOD_C_FILES = coretod.c coretodset.c coretodtickle.c coretodtoseconds.c \
51    coretodvalidate.c
52
53WATCHDOG_C_FILES = watchdog.c watchdogadjust.c watchdoginsert.c \
54    watchdogremove.c watchdogtickle.c
55
56STD_C_FILES = apiext.c chain.c $(CORE_MESSAGE_QUEUE_C_FILES) \
57    $(CORE_MUTEX_C_FILES) $(CORE_SEMAPHORE_C_FILES) $(HEAP_C_FILES) \
58    interr.c isr.c $(OBJECT_C_FILES) $(THREAD_C_FILES) $(THREADQ_C_FILES) \
59    $(TOD_C_FILES) userext.c $(WATCHDOG_C_FILES) wkspace.c
60
61if HAS_MP
62C_FILES = $(STD_C_FILES) $(MP_C_FILES)
63else
64C_FILES = $(STD_C_FILES)
65endif
66C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
67
68OBJS = $(C_O_FILES)
69
70#
71# Add local stuff here using +=
72#
73
74AM_CPPFLAGS += -D__RTEMS_INSIDE__
75
76all-local: ${ARCH} ${OBJS}
77
78EXTRA_DIST = $(STD_C_FILES) $(MP_C_FILES) Unlimited.txt
79
80include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.