Changeset 827d73f in mainline for uspace/Makefile
- Timestamp:
- 2010-02-12T14:09:22Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a70bda4
- Parents:
- 918e9910 (diff), e70edd1 (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
r918e9910 r827d73f 33 33 34 34 DIRS = \ 35 app/bdsh \ 36 app/edit \ 37 app/getterm \ 38 app/init \ 39 app/klog \ 40 app/mkfat \ 41 app/redir \ 42 app/taskdump \ 43 app/tester \ 44 app/tetris \ 45 app/trace \ 46 srv/clip \ 47 srv/devmap \ 48 srv/loader \ 49 srv/ns \ 50 srv/taskmon \ 51 srv/vfs \ 35 52 srv/bd/ata_bd \ 36 53 srv/bd/file_bd \ 37 54 srv/bd/gxe_bd \ 38 55 srv/bd/rd \ 39 srv/ns \ 40 srv/loader \ 41 srv/fb \ 42 srv/kbd \ 43 srv/char/i8042 \ 44 srv/console \ 56 srv/bd/part/guid_part \ 57 srv/bd/part/mbr_part \ 45 58 srv/fs/fat \ 46 59 srv/fs/tmpfs \ 47 60 srv/fs/devfs \ 48 srv/mouse/c_mouse \ 49 srv/vfs \ 50 srv/devmap \ 51 srv/part/mbr_part \ 52 srv/clip \ 53 app/edit \ 54 app/tetris \ 55 app/tester \ 56 app/trace \ 57 app/klog \ 58 app/init \ 59 app/getterm \ 60 app/redir \ 61 app/bdsh \ 61 srv/hid/adb_mouse \ 62 srv/hid/console \ 63 srv/hid/char_mouse \ 64 srv/hid/fb \ 65 srv/hid/kbd \ 66 srv/hw/char/i8042 \ 62 67 srv/net 63 68 64 69 ifeq ($(UARCH),amd64) 65 DIRS += srv/ pci70 DIRS += srv/hw/bus/pci 66 71 endif 67 72 68 73 ifeq ($(UARCH),ia32) 69 DIRS += srv/pci 74 DIRS += srv/hw/bus/pci 75 endif 76 77 ifeq ($(UARCH),ppc32) 78 DIRS += srv/hw/bus/cuda_adb 70 79 endif 71 80 72 81 ifeq ($(UARCH),sparc64) 73 82 DIRS += \ 74 srv/ cir/fhc \75 srv/ cir/obio83 srv/hw/cir/fhc \ 84 srv/hw/cir/obio 76 85 endif 77 86 … … 81 90 lib/libblock \ 82 91 lib/softint \ 83 lib/softfloat 92 lib/softfloat \ 93 94 ifeq ($(UARCH),amd64) 95 LIBS += lib/libpci 96 endif 97 98 ifeq ($(UARCH),ia32) 99 LIBS += lib/libpci 100 endif 101 84 102 85 103 LIBC_BUILD = $(addsuffix .build,$(LIBC)) … … 99 117 100 118 $(BUILDS): $(LIBC_BUILD) $(LIBS_BUILD) 101 $(MAKE) -C $(basename $@) all 119 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK) 102 120 103 121 $(LIBS_BUILD): $(LIBC_BUILD) 104 $(MAKE) -C $(basename $@) all 122 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK) 105 123 106 124 $(LIBC_BUILD): 107 $(MAKE) -C $(basename $@) all 125 $(MAKE) -C $(basename $@) all PRECHECK=$(PRECHECK)
Note:
See TracChangeset
for help on using the changeset viewer.