Changeset e035612 in mainline for uspace/Makefile
- Timestamp:
- 2009-10-14T15:00:02Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 68834d85, 7c7a3209, 81342f7
- Parents:
- c088fd4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rc088fd4 re035612 33 33 34 34 DIRS = \ 35 lib/libc \36 lib/libfs \37 lib/libblock \38 lib/softint \39 lib/softfloat \40 35 srv/bd/ata_bd \ 41 36 srv/bd/file_bd \ … … 76 71 endif 77 72 73 LIBC = lib/libc 74 LIBS = \ 75 lib/libfs \ 76 lib/libblock \ 77 lib/softint \ 78 lib/softfloat 79 80 LIBC_BUILD = $(addsuffix .build,$(LIBC)) 81 LIBS_BUILD = $(addsuffix .build,$(LIBS)) 82 78 83 BUILDS := $(addsuffix .build,$(DIRS)) 79 CLEANS := $(addsuffix .clean,$(DIRS)) 84 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 80 85 81 .PHONY: all $( BUILDS) $(CLEANS) clean86 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(BUILDS) $(CLEANS) clean 82 87 83 88 all: ../Makefile.config ../config.h ../config.defs $(BUILDS) … … 88 93 -$(MAKE) -C $(basename $@) clean 89 94 90 $(BUILDS): 95 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) 91 96 $(MAKE) -C $(basename $@) all 97 98 $(LIBS_BUILD): $(LIBC_BUILD) 99 $(MAKE) -C $(basename $@) all 100 101 $(LIBC_BUILD): 102 $(MAKE) -C $(basename $@) all
Note:
See TracChangeset
for help on using the changeset viewer.