Changeset 41f7564 in mainline for uspace/Makefile
- Timestamp:
- 2006-07-17T00:53:53Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 231fcb2
- Parents:
- 41c4444
- File:
-
- 1 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)
Note:
See TracChangeset
for help on using the changeset viewer.