Changeset bd8c8b2a in rtems for c/src/lib/libcpu/i386/wrapup
- Timestamp:
- Aug 5, 1998, 4:51:39 PM (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- dddc0557
- Parents:
- 0e3c0096
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/i386/wrapup/Makefile.in
r0e3c0096 rbd8c8b2a 13 13 14 14 # bummer; have to use $foreach since % pattern subst rules only replace 1x 15 OBJS=../$(ARCH)/libcpu .rel15 OBJS=../$(ARCH)/libcpuspec.a 16 16 LIB=$(ARCH)/libcpu.a 17 17 … … 42 42 43 43 $(LIB): ${OBJS} 44 $(make-library) 44 @ list_of_o_files=""; \ 45 for i in ${OBJS}; \ 46 do \ 47 DIRNAME=`dirname ${OBJS}` ; \ 48 temp=`$(AR) t $$i`; \ 49 echo $$temp ;\ 50 echo $$DIRNAME ;\ 51 for j in $$temp; \ 52 do \ 53 list_of_o_files="$$list_of_o_files $$DIRNAME/$$j"; \ 54 done ;\ 55 echo $$list_of_o_files ;\ 56 done ;\ 57 $(RM) $@ ;\ 58 $(AR) $(ARFLAGS) $@ $$list_of_o_files ;\ 59 $(MKLIB) $@ 45 60 46 61 all: ${ARCH} $(SRCS) $(LIB)
Note: See TracChangeset
for help on using the changeset viewer.