Changes in uspace/Makefile [c7dc8ad:86554e7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rc7dc8ad r86554e7 33 33 34 34 DIRS = \ 35 lib/libc \ 36 lib/libfs \ 37 lib/libblock \ 38 lib/softint \ 39 lib/softfloat \ 35 40 srv/bd/ata_bd \ 36 41 srv/bd/file_bd \ … … 47 52 srv/vfs \ 48 53 srv/devmap \ 49 srv/part/mbr_part \50 app/edit \51 54 app/tetris \ 55 app/shutters \ 56 app/test_serial \ 52 57 app/tester \ 53 58 app/trace \ … … 55 60 app/init \ 56 61 app/getvc \ 57 app/redir \58 62 app/bdsh 59 63 60 64 ifeq ($(UARCH),amd64) 61 DIRS += srv/pci 65 DIRS += \ 66 srv/pci \ 67 app/lspci 62 68 endif 63 69 64 70 ifeq ($(UARCH),ia32) 65 DIRS += srv/pci 71 DIRS += \ 72 srv/pci \ 73 app/lspci 66 74 endif 67 75 68 76 ifeq ($(UARCH),sparc64) 69 77 DIRS += \ 78 srv/pci \ 79 app/lspci \ 70 80 srv/cir/fhc \ 71 81 srv/cir/obio 72 82 endif 73 83 74 LIBC = lib/libc 75 LIBS = \ 76 lib/libfs \ 77 lib/libblock \ 78 lib/softint \ 79 lib/softfloat 84 BUILDS := $(addsuffix .build,$(DIRS)) 85 CLEANS := $(addsuffix .clean,$(DIRS)) 80 86 81 LIBC_BUILD = $(addsuffix .build,$(LIBC)) 82 LIBS_BUILD = $(addsuffix .build,$(LIBS)) 87 .PHONY: all $(BUILDS) $(CLEANS) clean 83 88 84 BUILDS := $(addsuffix .build,$(DIRS)) 85 CLEANS := $(addsuffix .clean,$(DIRS)) $(addsuffix .clean,$(LIBS)) $(addsuffix .clean,$(LIBC)) 86 87 .PHONY: all $(LIBC_BUILD) $(LIBS_BUILD) $(BUILDS) $(CLEANS) clean 88 89 all: $(BUILDS) 89 all: ../Makefile.config ../config.h ../config.defs $(BUILDS) 90 90 91 91 clean: $(CLEANS) … … 94 94 -$(MAKE) -C $(basename $@) clean 95 95 96 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD)96 $(BUILDS): 97 97 $(MAKE) -C $(basename $@) all 98 99 $(LIBS_BUILD): $(LIBC_BUILD)100 $(MAKE) -C $(basename $@) all101 102 $(LIBC_BUILD):103 $(MAKE) -C $(basename $@) all
Note:
See TracChangeset
for help on using the changeset viewer.