Changes in uspace/Makefile [86554e7:c7dc8ad] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r86554e7 rc7dc8ad 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 app/shutters \56 app/test_serial \57 52 app/tester \ 58 53 app/trace \ … … 60 55 app/init \ 61 56 app/getvc \ 57 app/redir \ 62 58 app/bdsh 63 59 64 60 ifeq ($(UARCH),amd64) 65 DIRS += \ 66 srv/pci \ 67 app/lspci 61 DIRS += srv/pci 68 62 endif 69 63 70 64 ifeq ($(UARCH),ia32) 71 DIRS += \ 72 srv/pci \ 73 app/lspci 65 DIRS += srv/pci 74 66 endif 75 67 76 68 ifeq ($(UARCH),sparc64) 77 69 DIRS += \ 78 srv/pci \79 app/lspci \80 70 srv/cir/fhc \ 81 71 srv/cir/obio 82 72 endif 83 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 84 84 BUILDS := $(addsuffix .build,$(DIRS)) 85 CLEANS := $(addsuffix .clean,$(DIRS)) 85 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 86 86 87 .PHONY: all $( BUILDS) $(CLEANS) clean87 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(BUILDS) $(CLEANS) clean 88 88 89 all: ../Makefile.config ../config.h ../config.defs$(BUILDS)89 all: $(BUILDS) 90 90 91 91 clean: $(CLEANS) … … 94 94 -$(MAKE) -C $(basename $@) clean 95 95 96 $(BUILDS): 96 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) 97 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.