Changeset 12d7710 in mainline for uspace/srv/loader/Makefile
- Timestamp:
- 2010-03-26T22:01:28Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1faa995
- Parents:
- 4204ad9 (diff), eaf22d4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/Makefile
r4204ad9 r12d7710 28 28 # 29 29 30 -include ../../../Makefile.common 31 -include ../../../Makefile.config 30 USPACE_PREFIX = ../.. 31 ROOT_PATH = $(USPACE_PREFIX)/.. 32 33 COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common 34 CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config 35 36 -include $(COMMON_MAKEFILE) 37 -include $(CONFIG_MAKEFILE) 32 38 -include arch/$(UARCH)/Makefile.inc 33 39 34 USPACE_PREFIX = ../.. 35 LIBS = $(LIBC_PREFIX)/libc.a 36 EXTRA_CFLAGS += -Iinclude 37 LINK_SCRIPT = arch/$(UARCH)/_link.ld 40 LINKER_SCRIPT = arch/$(UARCH)/_link.ld 41 EXTRA_CLEAN = $(LINKER_SCRIPT) 38 42 39 OUTPUT = loader 40 EXTRA_OUTPUT = $(LINK_SCRIPT) 43 EXTRA_CFLAGS = -Iinclude 44 45 BINARY = loader 41 46 42 47 GENERIC_SOURCES = \ … … 45 50 interp.s 46 51 47 SOURCES := $(GENERIC_SOURCES) $(ARCH_SOURCES) 48 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 52 SOURCES = \ 53 $(GENERIC_SOURCES) \ 54 $(ARCH_SOURCES) 49 55 50 include ../Makefile.common56 include $(USPACE_PREFIX)/Makefile.common 51 57 52 $(LINK _SCRIPT): $(LINK_SCRIPT).in58 $(LINKER_SCRIPT): $(LINKER_SCRIPT).in 53 59 $(GCC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@
Note:
See TracChangeset
for help on using the changeset viewer.