- Timestamp:
- 2009-01-20T18:38:16Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 27fb3d6
- Parents:
- b1747a5
- Location:
- uspace
- Files:
-
- 1 deleted
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 -include Makefile.config32 -include ../Makefile.config 33 33 34 34 DIRS = \ … … 74 74 CLEANS := $(addsuffix .clean,$(DIRS)) 75 75 76 .PHONY: all config build $(BUILDS) $(CLEANS) clean distclean76 .PHONY: all $(BUILDS) $(CLEANS) clean 77 77 78 all: 79 ../tools/config.py uspace.config default $(ARCH) $(COMPILER) $(CONFIG_DEBUG) 80 $(MAKE) -C . build 81 82 config: 83 ../tools/config.py uspace.config 84 85 build: $(BUILDS) 78 all: ../Makefile.config $(BUILDS) 86 79 87 80 clean: $(CLEANS) 88 89 distclean: clean90 -rm Makefile.config91 81 92 82 $(CLEANS): -
uspace/app/bdsh/Makefile
rb1747a5 r9a0367f 31 31 32 32 include ../../../version 33 include../../Makefile.config33 -include ../../../Makefile.config 34 34 35 35 LIBC_PREFIX = ../../lib/libc -
uspace/app/init/Makefile
rb1747a5 r9a0367f 28 28 29 29 include ../../../version 30 include../../Makefile.config30 -include ../../../Makefile.config 31 31 32 32 ## Setup toolchain -
uspace/app/klog/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc -
uspace/app/tester/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc -
uspace/app/tetris/Makefile
rb1747a5 r9a0367f 1 include../../Makefile.config1 -include ../../../Makefile.config 2 2 3 3 LIBC_PREFIX = ../../lib/libc -
uspace/app/trace/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc -
uspace/lib/libblock/Makefile
rb1747a5 r9a0367f 31 31 # 32 32 33 include../../Makefile.config33 -include ../../../Makefile.config 34 34 35 35 LIBC_PREFIX = ../libc -
uspace/lib/libc/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = $(shell pwd) -
uspace/lib/libc/Makefile.toolchain
rb1747a5 r9a0367f 31 31 LFLAGS = -M -N $(SOFTINT_PREFIX)/libsoftint.a 32 32 AFLAGS = 33 #-Werror34 33 35 34 ## Setup platform configuration 36 35 # 37 36 38 include $(LIBC_PREFIX)/arch/$(ARCH)/Makefile.inc37 -include $(LIBC_PREFIX)/arch/$(ARCH)/Makefile.inc 39 38 40 39 ## Simple detection of the host system -
uspace/lib/libc/arch/mips32/Makefile.inc
rb1747a5 r9a0367f 38 38 CFLAGS += -mips3 39 39 40 -include ../../ Makefile.config40 -include ../../../Makefile.config 41 41 ifeq ($(CONFIG_MIPS_FPU),y) 42 42 CFLAGS += -DCONFIG_MIPS_FPU -
uspace/lib/libfs/Makefile
rb1747a5 r9a0367f 31 31 # 32 32 33 include../../Makefile.config33 -include ../../../Makefile.config 34 34 35 35 LIBC_PREFIX = ../libc -
uspace/lib/softfloat/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../libc -
uspace/lib/softint/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../libc -
uspace/srv/console/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc -
uspace/srv/devmap/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc -
uspace/srv/fb/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc -
uspace/srv/fs/fat/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../../Makefile.config32 -include ../../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../../lib/libc -
uspace/srv/fs/tmpfs/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../../Makefile.config32 -include ../../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../../lib/libc -
uspace/srv/kbd/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc 35 35 SOFTINT_PREFIX = ../../lib/softint 36 include $(LIBC_PREFIX)/Makefile.toolchain 37 include ../../../Makefile.config 36 include $(LIBC_PREFIX)/Makefile.toolchain 38 37 39 38 CFLAGS += -Iinclude -I../libadt/include -
uspace/srv/loader/Makefile
rb1747a5 r9a0367f 28 28 # 29 29 30 include../../Makefile.config30 -include ../../../Makefile.config 31 31 32 32 ## Setup toolchain -
uspace/srv/ns/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc -
uspace/srv/pci/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc -
uspace/srv/pci/libpci/Makefile
rb1747a5 r9a0367f 4 4 # Modified and ported to HelenOS by Jakub Jermar 5 5 6 include../../../Makefile.config6 -include ../../../../Makefile.config 7 7 8 8 LIBC_PREFIX=$(shell cd ../../../lib/libc; pwd) -
uspace/srv/rd/Makefile
rb1747a5 r9a0367f 30 30 # 31 31 32 include../../Makefile.config32 -include ../../../Makefile.config 33 33 34 34 LIBC_PREFIX = ../../lib/libc -
uspace/srv/vfs/Makefile
rb1747a5 r9a0367f 31 31 # 32 32 33 include../../Makefile.config33 -include ../../../Makefile.config 34 34 35 35 LIBC_PREFIX = ../../lib/libc
Note:
See TracChangeset
for help on using the changeset viewer.