Changeset 4241683 in mainline for softint/Makefile
- Timestamp:
- 2006-03-14T20:45:36Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 56972c81
- Parents:
- 7d1562e9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
softint/Makefile
r7d1562e9 r4241683 30 30 # 31 31 32 SOFTINT_PREFIX = . 32 LIBC_PREFIX = ../libc 33 33 ## Setup toolchain 34 34 # 35 35 36 include $(SOFTINT_PREFIX)/Makefile.toolchain 36 include $(LIBC_PREFIX)/Makefile.toolchain 37 38 CFLAGS += -Iinclude 37 39 38 40 ## Sources … … 43 45 44 46 GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) 45 ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))46 47 47 48 .PHONY: all clean depend … … 56 57 57 58 depend: 58 $(CC) $(DEFS) $(CFLAGS) -M $( ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend59 $(CC) $(DEFS) $(CFLAGS) -M $(GENERIC_SOURCES) > Makefile.depend 59 60 60 61 softint.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
Note:
See TracChangeset
for help on using the changeset viewer.