- Timestamp:
- 2006-07-17T00:53:53Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 231fcb2
- Parents:
- 41c4444
- Location:
- uspace
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r41c4444 r41f7564 30 30 # 31 31 32 -include ../version 32 33 -include Makefile.config 33 34 … … 48 49 DIRS += pci 49 50 endif 51 50 52 ifeq ($(ARCH), ia32) 51 53 DIRS += pci 52 54 endif 53 55 54 CFLAGS += -DCONFIG_MIPS_FPU 56 ifeq ($(ARCH), mips32) 57 CFLAGS += -DCONFIG_MIPS_FPU 58 endif 59 60 ifeq ($(ARCH), mips32eb) 61 CFLAGS += -DCONFIG_MIPS_FPU 62 endif 55 63 56 64 BUILDS := $(addsuffix .build,$(DIRS)) … … 60 68 61 69 all: 62 tools/config.py default $(NARCH) 63 ifdef NARCH 64 ifneq ($(ARCH), $(NARCH)) 65 $(MAKE) -C . clean 66 endif 67 endif 70 ../tools/config.py uspace.config default $(ARCH) $(COMPILER) $(CONFIG_DEBUG) 68 71 $(MAKE) -C . build 69 72 70 73 config: 71 tools/config.py74 ../tools/config.py uspace.config 72 75 73 76 build: $(BUILDS) -
uspace/uspace.config
r41c4444 r41f7564 9 9 @ "ppc32" PowerPC 32-bit 10 10 @ "ppc64" PowerPC 64-bit 11 @ "sparc64" Sun UltraSPARC 64-bit 11 12 ! ARCH (choice) 12 13 13 # IA32Compiler14 # Compiler 14 15 @ "cross" Cross-compiler 15 16 @ "native" Native 16 ! [ARCH=ia32] IA32_COMPILER (choice) 17 % [ARCH=ia32] SAVEAS IA32_COMPILER COMPILER 17 ! COMPILER (choice) 18 18 19 # PPC32 Compiler 20 @ "cross" Cross-compiler 21 @ "native" Native 22 ! [ARCH=ppc32] PPC32_COMPILER (choice) 23 % [ARCH=ppc32] SAVEAS PPC32_COMPILER COMPILER 24 25 # PPC64 Compiler 26 @ "cross" Cross-compiler 27 @ "native" Native 28 ! [ARCH=ppc64] PPC64_COMPILER (choice) 29 % [ARCH=ppc64] SAVEAS PPC64_COMPILER COMPILER 30 31 # MIPS FPU support 32 ! [ARCH=mips32|ARCH=mips32eb] CONFIG_MIPS_FPU (n/y) 33 19 # General debuging and assert checking 20 ! CONFIG_DEBUG (y/n)
Note:
See TracChangeset
for help on using the changeset viewer.