Changeset cec261e in mainline
- Timestamp:
- 2010-01-16T21:45:58Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3e30c0b
- Parents:
- dc9162b (diff), ccb785b (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. - Location:
- uspace
- Files:
-
- 13 deleted
- 15 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/Makefile.common
rdc9162b rcec261e 28 28 # 29 29 30 ## Setup toolchain30 ## Common rules for building apps. 31 31 # 32 32 33 include Makefile.common 34 include $(LIBC_PREFIX)/Makefile.toolchain 35 include arch/$(UARCH)/Makefile.inc 36 37 CFLAGS += -Iinclude 38 LINK = arch/$(UARCH)/_link.ld 39 40 # # Sources33 # Individual makefiles set: 34 # 35 # USPACE_PREFIX relative path to uspace/ directory 36 # LIBS libraries to link with (with relative path) 37 # EXTRA_CFLAGS additional flags to pass to C compiler 38 # JOB job file name (like appname.job) 39 # OUTPUT output binary name (like appname) 40 # SOURCES list of source files 41 41 # 42 42 43 GENERIC_SOURCES = \ 44 main.c \ 45 elf_load.c \ 46 interp.s 43 DEPEND = Makefile.depend 44 DEPEND_PREV = $(DEPEND).prev 47 45 48 SOURCES := $(GENERIC_SOURCES) $(ARCH_SOURCES) 49 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 46 LIBC_PREFIX = $(USPACE_PREFIX)/lib/libc 50 47 51 .PHONY: all 48 JOB = $(OUTPUT).job 52 49 53 all: $(OUTPUT) $(OUTPUT).disasm 50 OBJECTS = $(addsuffix .o,$(basename $(SOURCES))) 51 52 -include $(USPACE_PREFIX)/../Makefile.config 53 include $(LIBC_PREFIX)/Makefile.toolchain 54 55 CFLAGS += $(EXTRA_CFLAGS) 56 57 .PHONY: all build clean 58 59 all: \ 60 $(LIBC_PREFIX)/../../../version \ 61 $(LIBC_PREFIX)/../../../Makefile.config \ 62 $(LIBC_PREFIX)/../../../config.h \ 63 $(LIBC_PREFIX)/../../../config.defs \ 64 $(LIBS) \ 65 \ 66 $(OUTPUT) \ 67 $(EXTRA_OUTPUT) 68 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 69 70 clean: 71 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(EXTRA_OUTPUT) $(EXTRA_CLEAN) 72 find . -name '*.o' -follow -exec rm \{\} \; 73 74 build: 54 75 55 76 -include $(DEPEND) 56 77 57 $(OUTPUT) .disasm: $(OUTPUT)58 $( OBJDUMP) -d $< > $@78 $(OUTPUT): $(OBJECTS) 79 $(AR) rc $@ $(OBJECTS) 59 80 60 $(OUTPUT): $(OBJECTS) $(LIBS) $(LINK) 61 $(LD) -T $(LINK) $(LFLAGS) $(OBJECTS) $(LIBS) -o $@ -Map $(OUTPUT).map 81 %.o: %.S $(DEPEND) 82 $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ 83 ifeq ($(PRECHECK),y) 84 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ 85 endif 62 86 63 $(LINK): $(LINK).in 64 $(GCC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@ 87 %.o: %.s $(DEPEND) 88 $(AS) $(AFLAGS) $< -o $@ 89 ifeq ($(PRECHECK),y) 90 $(JOBFILE) $(JOB) $< $@ as asm $(AFLAGS) 91 endif 65 92 66 93 %.o: %.c $(DEPEND) … … 70 97 endif 71 98 72 %.o: %.s $(DEPEND) 73 $(AS) $(AFLAGS) $< -o $@ 74 ifeq ($(PRECHECK),y) 75 $(JOBFILE) $(JOB) $< $@ as asm $(DEFS) $(CFLAGS) 76 endif 77 78 $(DEPEND): 99 $(DEPEND): $(PRE_DEPEND) 79 100 makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(SOURCES) > $@ 2> /dev/null 80 101 -[ -f $(DEPEND_PREV) ] && diff -q $(DEPEND_PREV) $@ && mv -f $(DEPEND_PREV) $@ -
uspace/lib/libblock/Makefile
rdc9162b rcec261e 28 28 # 29 29 30 include Makefile.common 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIBC_PREFIX)/libc.a 31 32 32 .PHONY: all clean 33 OUTPUT = libblock.a 33 34 34 all: $(LIBC_PREFIX)/../../../Makefile.config $(LIBC_PREFIX)/../../../config.h $(LIBC_PREFIX)/../../../config.defs $(LIBC_PREFIX)/libc.a 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 35 SOURCES = \ 36 libblock.c 37 37 38 clean: 39 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(LIBBLOCK) 40 find . -name '*.o' -follow -exec rm \{\} \; 38 include ../Makefile.common -
uspace/lib/libc/Makefile
rdc9162b rcec261e 1 1 # 2 2 # Copyright (c) 2005 Martin Decky 3 # Copyright (c) 2007 Jakub Jermar 3 4 # All rights reserved. 4 5 # … … 27 28 # 28 29 29 include Makefile.common 30 -include ../../../Makefile.config 30 31 31 .PHONY: all clean 32 USPACE_PREFIX = $(shell pwd)/../.. 33 #LIBS = $(LIBC_PREFIX)/libc.a 34 LIBS = 32 35 33 all: ../../../Makefile.config ../../../config.h ../../../config.defs 34 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 35 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 36 LINK = arch/$(UARCH)/_link.ld 36 37 37 clean: 38 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(INCLUDE_KERNEL) $(INCLUDE_ARCH) $(INCLUDE_LIBARCH) $(LIBC) arch/*/_link.ld 39 find generic/ arch/*/ -name '*.o' -follow -exec rm \{\} \; 38 PRE_DEPEND = $(INCLUDE_KERNEL) $(INCLUDE_ARCH) $(INCLUDE_LIBARCH) 39 EXTRA_CLEAN = $(INCLUDE_KERNEL) $(INCLUDE_ARCH) $(INCLUDE_LIBARCH) 40 EXTRA_OUTPUT = $(LINK) 41 42 INCLUDE_KERNEL = include/kernel 43 INCLUDE_ARCH = include/arch 44 INCLUDE_LIBARCH = include/libarch 45 46 OUTPUT = libc.a 47 48 GENERIC_SOURCES = \ 49 generic/libc.c \ 50 generic/ddi.c \ 51 generic/as.c \ 52 generic/cap.c \ 53 generic/clipboard.c \ 54 generic/devmap.c \ 55 generic/event.c \ 56 generic/errno.c \ 57 generic/mem.c \ 58 generic/string.c \ 59 generic/fibril.c \ 60 generic/fibril_synch.c \ 61 generic/pcb.c \ 62 generic/smc.c \ 63 generic/thread.c \ 64 generic/tls.c \ 65 generic/task.c \ 66 generic/futex.c \ 67 generic/io/asprintf.c \ 68 generic/io/io.c \ 69 generic/io/printf.c \ 70 generic/io/klog.c \ 71 generic/io/snprintf.c \ 72 generic/io/vprintf.c \ 73 generic/io/vsnprintf.c \ 74 generic/io/printf_core.c \ 75 generic/io/console.c \ 76 generic/malloc.c \ 77 generic/sysinfo.c \ 78 generic/ipc.c \ 79 generic/async.c \ 80 generic/loader.c \ 81 generic/getopt.c \ 82 generic/adt/list.o \ 83 generic/adt/hash_table.o \ 84 generic/time.c \ 85 generic/err.c \ 86 generic/stdlib.c \ 87 generic/mman.c \ 88 generic/udebug.c \ 89 generic/vfs/vfs.c \ 90 generic/vfs/canonify.c \ 91 generic/stacktrace.c 92 93 ARCH_SOURCES = \ 94 arch/$(UARCH)/src/entry.s \ 95 arch/$(UARCH)/src/thread_entry.s 96 97 SOURCES = \ 98 $(GENERIC_SOURCES) \ 99 $(ARCH_SOURCES) 100 101 include ../Makefile.common 102 103 $(INCLUDE_ARCH): $(INCLUDE_KERNEL) $(INCLUDE_KERNEL)/arch 104 ln -sfn kernel/arch $@ 105 106 $(INCLUDE_LIBARCH): arch/$(UARCH)/include 107 ln -sfn ../$< $@ 108 109 $(INCLUDE_KERNEL)/arch: ../../../kernel/generic/include/arch $(INCLUDE_KERNEL) 110 111 $(INCLUDE_KERNEL): ../../../kernel/generic/include/ 112 ln -sfn ../$< $@ 113 114 $(LINK): $(LINK).in 115 $(GCC) $(DEFS) $(CFLAGS) -DLIBC_PREFIX=$(LIBC_PREFIX) -E -x c $< | grep -v "^\#" > $@ -
uspace/lib/libc/Makefile.toolchain
rdc9162b rcec261e 59 59 # 60 60 61 include $(LIBC_PREFIX)/../../../Makefile.config62 include $(LIBC_PREFIX)/../../../config.defs63 include $(LIBC_PREFIX)/arch/$(UARCH)/Makefile.inc61 -include $(LIBC_PREFIX)/../../../Makefile.config 62 -include $(LIBC_PREFIX)/../../../config.defs 63 -include $(LIBC_PREFIX)/arch/$(UARCH)/Makefile.inc 64 64 65 65 ## Simple detection of the host system -
uspace/lib/libfs/Makefile
rdc9162b rcec261e 28 28 # 29 29 30 include Makefile.common 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIBC_PREFIX)/libc.a 31 32 32 .PHONY: all clean 33 OUTPUT = libfs.a 33 34 34 all: $(LIBC_PREFIX)/../../../Makefile.config $(LIBC_PREFIX)/../../../config.h $(LIBC_PREFIX)/../../../config.defs $(LIBC_PREFIX)/libc.a 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 35 SOURCES = \ 36 libfs.c 37 37 38 clean: 39 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(LIBFS) 40 find . -name '*.o' -follow -exec rm \{\} \; 38 include ../Makefile.common -
uspace/lib/libpci/Makefile
rdc9162b rcec261e 28 28 # 29 29 30 include Makefile.common 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIBC_PREFIX)/libc.a 31 32 32 .PHONY: all clean 33 OUTPUT = libpci.a 33 34 34 all: $(LIBC_PREFIX)/../../../Makefile.config $(LIBC_PREFIX)/../../../config.h $(LIBC_PREFIX)/../../../config.defs $(LIBC_PREFIX)/libc.a 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 35 SOURCES = \ 36 access.c \ 37 generic.c \ 38 names.c \ 39 i386-ports.c 37 40 38 clean: 39 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(LIBPCI) 40 find . -name '*.o' -follow -exec rm \{\} \; 41 include ../Makefile.common -
uspace/lib/softfloat/Makefile
rdc9162b rcec261e 28 28 # 29 29 30 include Makefile.common 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIBC_PREFIX)/libc.a 32 EXTRA_CFLAGS += -Iinclude -Iarch/$(UARCH)/include/ 31 33 32 .PHONY: all clean 34 OUTPUT = libsoftfloat.a 33 35 34 all: $(LIBC_PREFIX)/../../../Makefile.config $(LIBC_PREFIX)/../../../config.h $(LIBC_PREFIX)/../../../config.defs $(LIBC_PREFIX)/libc.a 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 36 SOURCES = \ 37 generic/add.c \ 38 generic/common.c \ 39 generic/comparison.c \ 40 generic/conversion.c \ 41 generic/div.c \ 42 generic/mul.c \ 43 generic/other.c \ 44 generic/softfloat.c \ 45 generic/sub.c 37 46 38 clean: 39 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(LIBSOFTFLOAT) 40 find . -name '*.o' -follow -exec rm \{\} \; 47 include ../Makefile.common -
uspace/lib/softint/Makefile
rdc9162b rcec261e 28 28 # 29 29 30 include Makefile.common 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIBC_PREFIX)/libc.a 32 EXTRA_CFLAGS = -Iinclude 31 33 32 .PHONY: all clean 34 OUTPUT = libsoftint.a 33 35 34 all: $(LIBC_PREFIX)/../../../Makefile.config $(LIBC_PREFIX)/../../../config.h $(LIBC_PREFIX)/../../../config.defs $(LIBC_PREFIX)/libc.a 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV)36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK)36 SOURCES = \ 37 generic/division.c\ 38 generic/multiplication.c 37 39 38 clean: 39 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(LIBSOFTINT) 40 find . -name '*.o' -follow -exec rm \{\} \; 40 include ../Makefile.common -
uspace/srv/loader/Makefile
rdc9162b rcec261e 28 28 # 29 29 30 include Makefile.common 30 -include ../../../Makefile.config 31 include arch/$(UARCH)/Makefile.inc 31 32 32 .PHONY: all clean 33 USPACE_PREFIX = ../.. 34 LIBS = $(LIBC_PREFIX)/libc.a 35 EXTRA_CFLAGS += -Iinclude 33 36 34 all: $(LIBC_PREFIX)/../../../Makefile.config $(LIBC_PREFIX)/../../../config.h $(LIBC_PREFIX)/../../../config.defs $(LIBS) 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 37 OUTPUT = loader 37 38 38 clean: 39 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm arch/*/_link.ld 40 find . -name '*.o' -follow -exec rm \{\} \; 39 GENERIC_SOURCES = \ 40 main.c \ 41 elf_load.c \ 42 interp.s 43 44 SOURCES := $(GENERIC_SOURCES) $(ARCH_SOURCES) 45 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 46 47 include ../Makefile.common -
uspace/srv/loader/arch/amd64/Makefile.inc
rdc9162b rcec261e 27 27 # 28 28 29 CFLAGS += -D__64_BITS__29 EXTRA_CFLAGS = -D__64_BITS__ 30 30 ARCH_SOURCES := arch/$(UARCH)/amd64.s -
uspace/srv/loader/arch/arm32/Makefile.inc
rdc9162b rcec261e 27 27 # 28 28 29 CFLAGS += -D__32_BITS__29 EXTRA_CFLAGS = -D__32_BITS__ 30 30 ARCH_SOURCES := arch/$(UARCH)/arm32.s -
uspace/srv/loader/arch/ia32/Makefile.inc
rdc9162b rcec261e 27 27 # 28 28 29 CFLAGS += -D__32_BITS__29 EXTRA_CFLAGS = -D__32_BITS__ 30 30 ARCH_SOURCES := arch/$(UARCH)/ia32.s -
uspace/srv/loader/arch/ia64/Makefile.inc
rdc9162b rcec261e 27 27 # 28 28 29 CFLAGS += -D__64_BITS__29 EXTRA_CFLAGS = -D__64_BITS__ 30 30 ARCH_SOURCES := arch/$(UARCH)/ia64.s 31 31 AFLAGS += -xexplicit -
uspace/srv/loader/arch/mips32/Makefile.inc
rdc9162b rcec261e 27 27 # 28 28 29 CFLAGS += -D__32_BITS__29 EXTRA_CFLAGS = -D__32_BITS__ 30 30 ARCH_SOURCES := arch/$(UARCH)/mips32.s -
uspace/srv/loader/arch/ppc32/Makefile.inc
rdc9162b rcec261e 27 27 # 28 28 29 CFLAGS += -D__32_BITS__29 EXTRA_CFLAGS = -D__32_BITS__ 30 30 ARCH_SOURCES := arch/$(UARCH)/ppc32.s -
uspace/srv/loader/arch/sparc64/Makefile.inc
rdc9162b rcec261e 27 27 # 28 28 29 CFLAGS += -D__64_BITS__29 EXTRA_CFLAGS = -D__64_BITS__ 30 30 ARCH_SOURCES := arch/$(UARCH)/sparc64.s
Note:
See TracChangeset
for help on using the changeset viewer.