Changeset 8bd0316 in mainline for softint/Makefile
- Timestamp:
- 2006-06-08T18:25:02Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e92aabf
- Parents:
- 0a9a324
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
softint/Makefile
r0a9a324 r8bd0316 50 50 .PHONY: all clean depend 51 51 52 all: softint.a52 all: libsoftint.a 53 53 54 54 -include Makefile.depend 55 55 56 56 clean: 57 -rm -f softint.a Makefile.depend57 -rm -f libsoftint.a Makefile.depend 58 58 find generic/ -name '*.o' -follow -exec rm \{\} \; 59 59 … … 61 61 -makedepend $(DEFS) $(CFLAGS) -f - $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null 62 62 63 softint.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS)64 $(AR) rc softint.a $(ARCH_OBJECTS) $(GENERIC_OBJECTS)63 libsoftint.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS) 64 $(AR) rc libsoftint.a $(ARCH_OBJECTS) $(GENERIC_OBJECTS) 65 65 66 66 %.o: %.S
Note:
See TracChangeset
for help on using the changeset viewer.