Changeset 1787e527 in mainline for uspace/Makefile
- Timestamp:
- 2009-11-16T21:22:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ebdf94
- Parents:
- fcbd1be (diff), 9c70ed6 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rfcbd1be r1787e527 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 \ … … 52 47 srv/vfs \ 53 48 srv/devmap \ 49 srv/part/mbr_part \ 50 app/edit \ 54 51 app/tetris \ 55 52 app/shutters \ … … 60 57 app/init \ 61 58 app/getvc \ 59 app/redir \ 62 60 app/bdsh 63 61 … … 82 80 endif 83 81 82 LIBC = lib/libc 83 LIBS = \ 84 lib/libfs \ 85 lib/libblock \ 86 lib/softint \ 87 lib/softfloat 88 89 LIBC_BUILD = $(addsuffix .build,$(LIBC)) 90 LIBS_BUILD = $(addsuffix .build,$(LIBS)) 91 84 92 BUILDS := $(addsuffix .build,$(DIRS)) 85 CLEANS := $(addsuffix .clean,$(DIRS)) 93 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 86 94 87 .PHONY: all $( BUILDS) $(CLEANS) clean95 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(BUILDS) $(CLEANS) clean 88 96 89 all: ../Makefile.config ../config.h ../config.defs$(BUILDS)97 all: $(BUILDS) 90 98 91 99 clean: $(CLEANS) … … 94 102 -$(MAKE) -C $(basename $@) clean 95 103 96 $(BUILDS): 104 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) 97 105 $(MAKE) -C $(basename $@) all 106 107 $(LIBS_BUILD): $(LIBC_BUILD) 108 $(MAKE) -C $(basename $@) all 109 110 $(LIBC_BUILD): 111 $(MAKE) -C $(basename $@) all
Note:
See TracChangeset
for help on using the changeset viewer.