Changeset db4d6de in mainline for uspace/Makefile
- Timestamp:
- 2009-11-28T16:30:43Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c4702804
- Parents:
- ba8f8cb (diff), 67392fa (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
rba8f8cb rdb4d6de 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 \ … … 60 55 app/init \ 61 56 app/getvc \ 57 app/redir \ 62 58 app/bdsh 63 59 … … 76 72 endif 77 73 74 LIBC = lib/libc 75 LIBS = \ 76 lib/libfs \ 77 lib/libblock \ 78 lib/softint \ 79 lib/softfloat 80 81 LIBC_BUILD = $(addsuffix .build,$(LIBC)) 82 LIBS_BUILD = $(addsuffix .build,$(LIBS)) 83 78 84 BUILDS := $(addsuffix .build,$(DIRS)) 79 CLEANS := $(addsuffix .clean,$(DIRS)) 85 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 80 86 81 .PHONY: all $( BUILDS) $(CLEANS) clean87 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(BUILDS) $(CLEANS) clean 82 88 83 all: ../Makefile.config ../config.h ../config.defs$(BUILDS)89 all: $(BUILDS) 84 90 85 91 clean: $(CLEANS) … … 88 94 -$(MAKE) -C $(basename $@) clean 89 95 90 $(BUILDS): 96 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) 91 97 $(MAKE) -C $(basename $@) all 98 99 $(LIBS_BUILD): $(LIBC_BUILD) 100 $(MAKE) -C $(basename $@) all 101 102 $(LIBC_BUILD): 103 $(MAKE) -C $(basename $@) all
Note:
See TracChangeset
for help on using the changeset viewer.