Changeset 07347cb in rtems for cpukit/score/Makefile.am
- Timestamp:
- Jan 7, 2004, 5:48:16 PM (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 74a67351
- Parents:
- e7d110ba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/Makefile.am
re7d110ba r07347cb 4 4 5 5 include $(top_srcdir)/automake/multilib.am 6 include $(top_srcdir)/automake/compile.am 7 include $(top_srcdir)/automake/lib.am 6 include $(top_srcdir)/automake/amcompile.am 8 7 9 8 SUBDIRS = . cpu … … 82 81 ## src 83 82 84 LIB=$(ARCH)/libscore.a85 86 83 # We only build multiprocessing related files if HAS_MP was defined 87 84 MP_C_FILES = src/mpci.c src/objectmp.c src/threadmp.c … … 147 144 C_FILES += $(MP_C_FILES) 148 145 endif 149 OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT))150 151 #152 # Add local stuff here using +=153 #154 146 155 147 AM_CPPFLAGS += -D__RTEMS_INSIDE__ 156 148 157 $(LIB): ${OBJS} 158 $(make-library) 159 160 ${ARCH}/%.$(OBJEXT): src/%.c $(ARCH)/$(dirstamp) 161 ${COMPILE} -o $@ -c $< 149 EXTRA_LIBRARIES = o-optimize/libscore.a 150 o_optimize_libscore_a_SOURCES = $(C_FILES) 151 o_optimize_libscore_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 152 153 EXTRA_LIBRARIES += o-debug/libscore.a 154 o_debug_libscore_a_SOURCES = $(C_FILES) 155 o_debug_libscore_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 162 156 163 157 EXTRA_DIST += $(STD_C_FILES) $(MP_C_FILES) src/Unlimited.txt 164 158 165 all-local: $(PREINSTALL_FILES) $( LIB)159 all-local: $(PREINSTALL_FILES) $(ARCH)/libscore.a 166 160 167 161 PREINSTALL_FILES =
Note: See TracChangeset
for help on using the changeset viewer.